Create article
POST/openapi/2026-07/articles
Create a new article with the provided details.
Request
- application/json
- Body
- Example
Bodyrequired
article objectrequired
Article data to be created
Article title. The title is required and must be between 1 and 100 characters
Possible values: <= 100 characters
Article summary/teaser text. The summary is optional and can be up to 255 characters
Possible values: <= 255 characters
Full article content
Whether the article is published
Publication timestamp
URL-friendly article identifier
Author name
Custom SEO title
SEO meta description
SEO keywords
IDs of associated blogs/collections
image object
Featured image object with URL
Image URL
Width
Height
{
"article": {
"title": "string",
"excerpt": "string",
"content": "string",
"published": true,
"published_at": "string",
"handle": "string",
"author": "string",
"seo_title": "string",
"seo_description": "string",
"seo_keywords": [
"string"
],
"blog_ids": [
"string"
],
"image": {
"src": "string",
"width": 0,
"height": 0
}
}
}
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
error code
error message
data object
article object
Article
Article ID
Title of the article
Short summary or preview of the article content
Full content of the article
image object
Image associated with the article containing src, width, height, and alt
Image URL
Width
Height
Path
Whether the article is published or not
URL-friendly identifier for the article
Custom SEO title
SEO meta description
SEO keywords
Author of the article
ISO 8601 timestamp when article was published
Array of blog IDs this article belongs to
ISO 8601 timestamp when article was created
ISO 8601 timestamp when article was last updated
{
"code": "string",
"message": "string",
"data": {
"article": {
"id": "string",
"title": "string",
"excerpt": "string",
"content": "string",
"image": {
"src": "string",
"width": 0,
"height": 0,
"path": "string"
},
"published": true,
"handle": "string",
"seo_title": "string",
"seo_description": "string",
"seo_keywords": [
"string"
],
"author": "string",
"published_at": "string",
"blog_ids": [
"string"
],
"created_at": "string",
"updated_at": "string"
}
}
}