API reference

Get a demo page

Fetch one placeholder documentation page by ID.

Updated May 11, 2026

Get a demo page

Fetch one placeholder documentation page by ID.

GETGet a demo page
https://api.example.com/v1/demo-pages/{pageId}

Auth: bearerAuth: bearer (token)Open playground

Generated from examples/openapi.json. Use the playground for interactive exploration when your API allows safe requests.

Authentication

bearerAuth: bearer (token)

Parameters

pageIdstring pathpathRequired
Unique demo page ID.

Responses

200HTTP response
The requested demo page.
404HTTP response
No demo page exists with that ID.

Code samples

cURL
curl -X GET "https://api.example.com/v1/demo-pages/string" \
  -H "Authorization: Bearer $API_TOKEN"

Schemas

DemoPage
PropertyTypeDescription
idRequiredstring
slugRequiredstring
titleRequiredstring
statusRequireddraft | published
DemoPageCreate
PropertyTypeDescription
titleRequiredstring
bodyRequiredstring
tagsOptionalstring[]
Was this page helpful?