Skip to main content
The Article resource represents a piece of content — its title, description, content blocks, thumbnail, and styling.

Sample payload

Endpoints

Create Article

POST /articles Create a new article. Use the sample payload as a guide for the request body.

Get all Articles

GET /articles Retrieve all articles.

Get a single Article

GET /articles/<article_key> Retrieve a single article by its key.
article_key
string
required
Unique key of the article.

Update Article

PATCH /articles/<article_key> Update an existing article. Include only the fields you want to change.
article_key
string
required
Unique key of the article.

Delete Article

DELETE /articles/<article_key> Delete an article.
article_key
string
required
Unique key of the article.