Trybe API

Build with the Trybe API.

A REST API for spa, wellness and activities. Availability, bookings, vouchers, memberships, inventory, payments — everything that powers the Trybe product is here for you to build on.

Quickstart

Verify your token in one call.

Authenticate with a Bearer token and hit /token-info — the API decodes your token, returns its claims, and confirms it's valid. The fastest way to know your credentials work before you start building.

01
Contact your Onboarding Manager for an API key
Tokens are issued per-environment; the playground is whitelist-only and safe to break.
02
Pick a base URL
api.playground.try.be for development, api.try.be for production. Same shape.
03
Verify your token
GET /token-info returns the JWT claims (sub, exp, aud …). If it 200s, you're ready.
OpenAPI specification

The spec is the source of truth.

Generate a client for any language you like with openapi-generator-cli, or call the API directly with curl, fetch, httpx, Guzzle or net/http. Examples for each ship on every operation page.