Get Page
Retrieve a single page by ID.
GET /api/pages/:idAuthentication
Required. API key or browser session. You can only access your own pages.
Path parameters
| Parameter | Type | Description |
|---|---|---|
id | UUID | The page ID |
Response
Status: 200 OK
{
"page": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"slug": "my-page",
"title": "My Page",
"description": null,
"components": [...],
"theme": {...},
"customCss": null,
"meta": null,
"is_published": true,
"show_in_widget": false,
"created_at": "2026-02-19T10:00:00Z",
"updated_at": "2026-02-19T10:00:00Z"
}
}Errors
| Status | Error | When |
|---|---|---|
| 401 | Not authenticated | Missing or invalid auth |
| 404 | Page not found | ID doesn’t exist or not owned by you |
Last updated on