Skip to main content

API Overview

The Freeq API lets you authenticate, manage organisations/projects, work with wallets and inventory, issue tokens/memberships, record events, and receive webhooks. This overview gives you the base URL, error model, and a map of the key resources to explore next.

Testing Environment

The Testnet API is designed for manual functional testing only. It is not approved for automated, load, stress, or performance testing. For production workloads, contact support for mainnet access.

Base URL

https://api.testnet.superfreeq.com

Authentication

Most endpoints require a bearer token. See Authentication.

Resources


Errors

CodeMeaning
200OK
201Created
202Accepted (async)
400Bad request
401Unauthorized
403Forbidden
404Not found
409Conflict
500Internal error
tip

In bash, set env vars once and reuse them:

export FREEQ_API_URL="https://api.testnet.superfreeq.com"
export FREEQ_PROJECT_KEY="YOUR_PROJECT_KEY"
export FREEQ_API_TOKEN="YOUR_JWT_TOKEN"

Use FREEQ_API_TOKEN as a Bearer token in all protected requests.