Skip to main content

API Tokens

Create a token

API tokens are created in the Fora web app under Settings → API Tokens. Tokens are shown once on creation. Store them securely.

Use a token

Send the token using the Authorization header:

Authorization: Bearer <YOUR_TOKEN>

Token scopes

  • ingest:write is required for ingestion endpoints.
  • Other endpoints documented here currently accept any valid token.

Inspect the current token

curl "https://api.fora.is/tokens/me" \
-H "Authorization: Bearer $FORA_TOKEN"