BioFlow
API Reference

List pages

GET /v1/pages — Every bio page in the workspace, newest-updated first. Cursor-paginated. Requires scope pages:read.

GET
/v1/pages

Every bio page in the workspace, newest-updated first. Cursor-paginated.

Requires scope: pages:read. Plan entitlement: public_api (Creator and Pro).

Authorization

AuthorizationBearer <token>

API key (bf_live_… / bf_test_…) as a Bearer token.

In: header

Query Parameters

limit?integer
Range1 <= value <= 100
Default25
after?string

Opaque cursor from a previous response

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

curl -X GET "https://example.com/v1/pages"
{  "data": [    {      "id": "string",      "title": "string",      "slug": "string",      "status": "DRAFT",      "block_count": 0,      "public_url": "string",      "updated_at": "2019-08-24T14:15:22Z"    }  ],  "has_more": true,  "next_cursor": "string"}