Data API
Build your own custom frontend while Nurio handles the content generation and backend. Fetch your posts and articles as raw JSON to integrate them anywhere.
Getting Started
The Data API is a set of public endpoints that allow you to retrieve your published content. All endpoints support CORS, meaning you can call them directly from your client-side JavaScript (React, Svelte, Vue, etc.).
Fast & Cached
Requests are globally cached at the edge. Content updates are reflected within 60 seconds of publishing.
No Auth Required
Public endpoints only return "published" content. No API keys are needed for GET requests.
List published posts
Retrieve a list of your most recent published posts.Body content is excluded from this list to keep the response lightweight.
Query Parameters
| Param | Default | Desc |
|---|---|---|
| limit | 6 | Max posts to return (1-20) |
| category | null | Filter by category name |
Example Request
fetch('https://nurio.sh/api/public/YOUR-WORKSPACE/posts')
.then(res => res.json())
.then(data => console.log(data.posts));Retrieve a single post
Fetch the full content of a specific post using its slug. This includes the contentHtml which contains the sanitized body of the article.
Response Schema
{
"posts": [
{
"title": "How to build a content engine",
"slug": "how-to-build-a-content-engine",
"excerpt": "Learn the secrets to scaling your content...",
"category": "Growth",
"thumbnailUrl": "https://...",
"publishedAt": "2026-05-12T10:00:00.000Z",
"url": "https://yoursite.com/blog/how-to-build-a-content-engine"
}
]
}Rate Limiting
To ensure platform stability, the public API is limited to 60 requests per minute per IP address. If you exceed this limit, the API will return a 429 Too Many Requests error.
Need help with custom integrations?