Authentication.
Include your API key as a Bearer token in the Authorization header with every request.
API keys
Generate a key from the dashboard. Every key has the form ax_live_ followed by 32 hex characters (128-bit entropy). Keys bill against your plan, count toward rate limits, and can trigger webhooks. Treat them as secrets and rotate them from the dashboard.
Keys are shown once at creation. Store them server-side; never ship a live key in client code. Rotate from the dashboard if exposed.
The Authorization header
Pass your key as a Bearer token in the Authorization header on every request:
curl "https://api.axiora.dev/v1/companies/7203/financials" \
-H "Authorization: Bearer ax_live_YOUR_KEY"A missing or malformed header returns 401 unauthorized; a valid key without access to an endpoint returns 403. See Errors.
Tier Access
Free tier covers core financial data. Ownership intelligence, signals, and bulk export require a paid tier.
Per-second and daily budgets are reported on every response via the X-RateLimit-* headers, see Rate limits.