Skip to main content
Quick Summary: Create an API key in Settings → API Credentials, send it as a Bearer token, call /api/v1/ping to prove the connection, then make your first real call.

1. Create an API key

A company administrator creates keys under Settings → API Credentials: give it a name, pick its scopes (for example careers:read), and choose the acting person — the API can never do more than that person could do in the app.
The key is shown exactly once at creation. Copy it immediately — only a one-way hash is stored, and a lost key can only be replaced, never recovered.

2. Prove the connection

/ping requires a valid key but no scope — it is the scope-free connectivity check.

3. Make your first real call

The conventions, in one paragraph

Every response is JSON with camelCase fields. Collections are { data: [...], meta: { total, limit, offset } }; single resources are { data: {...} }. Ids are opaque strings. Timestamps are ISO 8601 UTC with a Z. Nullable fields are always present with an explicit null. Errors are RFC 9457 problem+json — see the error catalogue. The machine-readable contract is at /api/v1/openapi.json (no authentication needed).

Explore with Postman

A ready-made Postman collection is generated from the same contract. Import it, open the collection’s Variables tab, paste your key into apiKey and point baseUrl at your environment — every request inherits the collection-level authentication and common headers, so nothing needs configuring per request. Write requests carry an optional, one-click Idempotency-Key header prefilled with a GUID, and request bodies come prefilled with working examples.

Where next