Webiny Headless CMS API
Webiny is an open-source, serverless headless CMS built on AWS, offering a fully customizable GraphQL API for managing content models, entries, and workflows. It supports three API types: Read, Manage, and Preview, catering to different stages of content lifecycle and user roles.
1
Endpoints
26
Views
Jul 20, 2025
Last Checked
NaN
Rate Limit
API Endpoints
Creates a new content item in Webiny CMS
Full URL
http://localhost:4000/graphql/content-manager/collection-types/{model}
Code Examples
curl -X POST 'http://localhost:4000/graphql/content-manager/collection-types/{model}' \
-H 'Authorization: Bearer YOUR_API_KEY'
Parameters
{ "title": "New Blog Post", "content": "Content here...", "category": "tutorials" }
Example Response
{
"id": "abc123def456",
"title": "New Blog Post",
"published_at": "2023-07-18T14:30:00Z"
}
Version
v1
Rate Limit
60 requests/minute
Tags
cmsserverless
Related APIs
Discover similar APIs that might interest you