Brault Developers

Retrieve a page

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

The page plus its content. format=json returns the stored ProseMirror document verbatim; format=markdown renders it. Content is the last stored snapshot: an edit in progress appears after its next save.

AuthorizationBearer <token>

API key from Settings → Developers

In: header

Path Parameters

pageId*string

Query Parameters

format?string
Default"json"

Value in

  • "json"
  • "markdown"

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/pages/string"
{  "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",  "content": {    "format": "json",    "json": {},    "markdown": "string"  }}