Authorization header on every request. Each key is scoped to a single academy, so the API infers your academy from the key you provide. You never pass an academy identifier separately, and the host you call does not matter because the academy comes from the key.
The REST API is available on Fayne’s paid plans. On a free or trial plan, API requests are rejected with a
402 (trial_api_unavailable). Upgrade to enable API access.Generating an API key
Open your academy owner dashboard and navigate to Settings > API Keys. Click Create API key, give it a name, and copy the full key immediately. It is shown only once.Key format
Every API key begins with the prefixfa_live_ followed by 32 lowercase hexadecimal characters, making the full key 40 characters long.
Sending the Authorization header
Include your key as a Bearer token in theAuthorization header of every request.
Example request
Rate limiting
Requests are rate-limited per API key. When you exceed the limit, the API returns a429 response with a Retry-After header indicating how many seconds to wait before retrying.
Error codes
The table below covers authentication and common resource errors you may encounter across all endpoints.Error response shape
When a request fails, the API returns a JSON body with anerror object containing a code and a human-readable message.
Common questions
Can I connect my CRM or other tools?
Can I connect my CRM or other tools?
Yes. Use this REST API to sync people from your customer management or signup tool: call POST /api/v1/students to add a student and enroll them in courses in one request, or manage lists so course access follows list membership (add someone in your tool and they get access; remove them and it is revoked). To let an AI assistant like Claude or Cursor read and edit your course content directly, see Connect AI Tools.

