GET
/
v1
/
documentation
/
{parent_id}
/
blocks
curl --request GET \
  --url http://localhost:8000/api/v1/documentation/{parent_id}/blocks
{
  "data": {
    "block_type": "bookmark",
    "id": "<string>",
    "parent_id": "<string>",
    "content": [
      {
        "annotations": {
          "bold": "<string>",
          "italic": "<string>",
          "strikethrough": "<string>",
          "underline": "<string>",
          "code": "<string>",
          "color": "<string>"
        },
        "plain_text": "<string>",
        "href": "<string>"
      }
    ]
  },
  "meta": {}
}

Path Parameters

parent_id
string
required

This will be parent id of the block you want to create

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

Response

200
application/json
data
object
required
meta
object