Brault Developers

List pages

Regionalus.api.brault.appfollows the region selector in the top bar
GET
/v1/pages

Pages the key’s creator can see, newest first. Listed by location only: no q, no filter, no kind.

AuthorizationBearer <token>

API key from Settings → Developers

In: header

Query Parameters

limit?number
Range1 <= value <= 100
Default50
cursor?string

Opaque cursor from a previous response.

library_id?string
folder_id?string
recursive?boolean

Include pages in every descendant folder.

Defaultfalse

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/pages"
{  "object": "list",  "has_more": true,  "next_cursor": "string",  "data": [    {      "object": "page",      "id": "string",      "name": "string",      "library_id": "string",      "folder_id": "string",      "published": true,      "published_at": "2019-08-24T14:15:22Z",      "published_by_id": "string",      "public_url": "string",      "created_at": "2019-08-24T14:15:22Z",      "updated_at": "2019-08-24T14:15:22Z",      "created_by_id": "string",      "trashed_at": "2019-08-24T14:15:22Z"    }  ]}