BioFlow
API Reference

List contacts

GET /v1/contacts — Captured contacts and leads (newsletter signups, form submissions, gated downloads), newest first. Cursor-paginated with REAL database keyset…

GET
/v1/contacts

Captured contacts and leads (newsletter signups, form submissions, gated downloads), newest first. Cursor-paginated with REAL database keyset cursors — safe at any collection size.

Requires scope: contacts: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/contacts"
{  "data": [    {      "id": "string",      "email": "string",      "name": "string",      "source": "string",      "source_block_id": "string",      "created_at": "2019-08-24T14:15:22Z"    }  ],  "has_more": true,  "next_cursor": "string"}