Authentication.
すべてのリクエストで、AuthorizationヘッダーにAPIキーをBearerトークンとして含めてください。
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.
プラン別アクセス:
無料プランは基本的な財務データをカバー。株主構造・シグナル・一括エクスポートは有料プランが必要です。
Per-second and daily budgets are reported on every response via the X-RateLimit-* headers, see Rate limits.