Booking Pro API
API ReferenceGeneral

Verify a key

Returns the identity a key resolves to. Use it to confirm a key works and to see which company, scopes, environment, and locations it is bound to.

GET
/ping

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

Response Body

application/json

application/json

curl -X GET "https://example.com/ping"
{  "company_id": "3b1e....",  "environment": "live",  "scopes": [    "read:catalog",    "read:bookings",    "write:bookings"  ],  "location_ids": [    "a1c2...."  ],  "request_id": "req_9f2b7c"}