API reference

List demo pages

Return a paginated list of placeholder documentation pages.

Updated May 11, 2026

List demo pages

Return a paginated list of placeholder documentation pages.

GETList demo pages
https://api.example.com/v1/demo-pages

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

limitinteger queryquery
Maximum number of pages to return.
cursorstring queryquery
Pagination cursor from the previous response.

Responses

200HTTP response
A list of demo pages.

Code samples

cURL
curl -X GET "https://api.example.com/v1/demo-pages?limit=1&cursor=string" \
  -H "Authorization: Bearer $API_TOKEN"

Schemas

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