Booking Pro API
API ReferenceCatalog

List services

The bookable services offered, scoped to the key's locations.

GET
/services

Authorization

ApiKeyAuth
AuthorizationBearer <token>

Send your API key as a bearer token: Authorization: Bearer bp_sk_live_.... Mint and revoke keys in your dashboard under Settings -> Developers.

In: header

Query Parameters

location_id?string

Restrict to a single location. Must be one the key can access.

Formatuuid
limit?integer
Range1 <= value <= 100
Default25
cursor?string

The next_cursor from a previous page.

Response Body

application/json

application/json

curl -X GET "https://example.com/services"
{  "data": [    {      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",      "location_id": "46910cc3-ab41-4b80-b4a7-94dab9f1b795",      "name": "string",      "description": "string",      "duration_minutes": 0,      "price_cents": 0,      "category": "string"    }  ],  "next_cursor": "string"}