Create Content
at the Speed of Thought

Finally, a CMS that lets your marketing team publish content without touching code or waiting for developers. PMKIN empowers non-technical teams to create and manage content independently.

From Draft to Live in Minutes, Not Days
Give your content team the freedom to publish instantly. No more technical bottlenecks or developer dependencies – just smooth, efficient content creation and publishing.
Writing content.
Your Next.js Website's Perfect Content Partner
Stop wrestling with complex CMSs. PMKIN seamlessly integrates with Next.js, letting you focus on creating great content instead of solving technical puzzles.
Learn more
Writing content.
Boost Your SEO Without Breaking a Sweat
Whether you run a small business, a webshop, or a blog, PMKIN ensures your website competes in the search results.
Writing content.
Write Once, Publish Everywhere
Create content that flows seamlessly across all your digital channels. PMKIN's headless architecture ensures your content looks perfect wherever it appears.
Get started for free
Writing content.

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)