GET
/
v1
/
documentation
/
pages
curl --request GET \
  --url http://localhost:8000/api/v1/documentation/pages
{
  "data": [
    {
      "id": "<string>",
      "parent_id": "<string>",
      "title": "<string>",
      "created_by": "<string>",
      "created_at": "<string>",
      "updated_at": "<string>",
      "updated_by": "<string>"
    }
  ],
  "meta": {
    "limit": 123,
    "cursors": {
      "before": "<string>",
      "current": "<string>",
      "next": "<string>"
    }
  }
}

Query Parameters

cursor
string

Cursor to start from. You can find cursors for next & previous pages in the meta.cursors property of the response.

raw
boolean

Include raw response. When you want more data from the source

title
string[]

Filter by title

sort
enum<string>

You can the use values from enum to sort the respose

Available options:
created_at,
updated_at
direction
enum<string>

You can pass asc/desc

Available options:
asc,
desc

Response

200
application/json
data
object[]
required
meta
object
required