Elevate Your
Content Creation.

Collaborate across teams to create amazing content in an an environment that's made for writing and integrates into your existing website.

Enjoy writing

Make editors happy with an intuitive interface.

Spend your time writing, not fighting with your CMS. PMKIN is made to be written in, not copy-and-pasted to.

Rich text editing

There is no need to remember complicated formatting rules. Just write.

Made for collaboration

Empower your entire team to work together and share insights from your entire organization.

Your content, anywhere

With a Headless CMS, You can write all your content in one place and then publish it on your existing site. It works great with tools like Next.js and Gatsby.

Plug and play

Best for Next

PMKIN is designed to work with Next.js out of the box. It's optimized for performance and SEO, and it's easy to use in your existing Next.js app.

Developer-first design

Access your data with modern APIs

To keep your developers productive and happy, we provide state of the-art APIs to make it easy for your developer team to create the best experience for your users.
import { GraphQLClient, gql } from 'graphql-request'
const query = gql`query ListDocuments {
documents(includeDrafts: false) {
id
isPublished
metaDescription
metaTitle
publishedAt
slug
subtitle
title
}
}
`
const client = new GraphQLClient('https://content.pmkin.io/graphql', {
headers: {
Authorization: `Bearer ${process.env.PMKIN_API_KEY}`
}
}
const { documents } = await client.request(query)