TBBN.Space API docs
Getting started

From zero to a booked Space

No account is required to search. You only need an API key once you want your saved defaults/pinned results applied automatically, or you want to book on behalf of a client with no TBBN account.

1. Search — no account required

curl
curl "https://api.tbbnetwork.com/v1/space/search?country=US&query=downtown"

2. Get an API key

Register a Business at business.tbbnetwork.com (no Merchant relationship required), then create a key at account.tbbnetwork.com.

3. Book — with or without a TBBN account

A real TBBN member books with their own session token, same as the marketplace. To reserve on behalf of a client with no TBBN account at all, present your API key and include externalClientRef — the response includes a hosted payment link, since TBBN Space payment always happens on TBBN's own site.

POST /v1/space/bookings (headless)
curl -X POST https://api.tbbnetwork.com/v1/space/bookings \
  -H "Authorization: Bearer sk_space_live_..." \
  -H "Content-Type: application/json" \
  -d '{
    "branchId": "branch_...",
    "serviceType": "MEETUP",
    "externalClientRef": "your-internal-client-id-042"
  }'

Next steps