3 short pages · to your first call
Getting started
Authentication, date formats, and migrating from v1 — skim only the ones you need. Each opens with a “Why should you care” box so you can decide if it applies to you before reading.
Authentication & rate limits
One header, three token types, and a 2 req/s bucket per token. Includes a token tester so you can verify yours in seconds.
ReadDate formatting
ISO 8601 + UTC, no exceptions. Common pitfalls (slash dates, missing timezones), plus a live converter.
ReadMigrating from v1
Only relevant if you have an old integration. Most paths are the same shape — main change is the auth header.
ReadYour first request
One curl. If it returns 200, you're integrated.
Hit GET /account with your token. A 200 means the token is valid and the scope reaches the workspace. A 401 means the token or header name is wrong (it's X-API-TOKEN, not Authorization).
Base URL https://api.flxpoint.com
curl -X GET "https://api.flxpoint.com/account" \
-H "Accept: application/json" \
-H "X-API-TOKEN: YOUR_TOKEN"Stuck on something specific? Ask the assistant in the bottom-right — it cites the spec directly, no hallucinated endpoints.