This API provides streamlined access to all published content, including articles, pages, and media assets.
All requests require a valid API key passed in the X-API-Key header or as a query parameter ?api_key=....
X-API-Key
?api_key=...
Fetches a paginated list of all available content.
GET /api/v1/content
/api/v1/content
type
article
page
limit
Retrieves the full details for a single content item using its unique slug identifier.
GET /api/v1/content/{slug}
/api/v1/content/{slug}
{ "id": 45, "slug": "getting-started-api", "title": "Getting Started with the Content API", "author": "Jane Doe", "published_date": "2023-10-26T10:00:00Z", "body": "<p>This is the full HTML content of the article...</p>", "metadata": { "tags": ["api", "tutorial", "docs"] } }
Allows full-text search across all indexed content fields.
GET /api/v1/search
/api/v1/search
Required Parameter: q (The search query string)
q
400 Bad Request
401 Unauthorized
404 Not Found