Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.blitz-api.ai/llms.txt

Use this file to discover all available pages before exploring further.

Check API Key — GET /v2/account/key-info

Verify your key and check your account status. Use as a health check before batch jobs.
Agents & LLMs: a Markdown version of this page is available by appending .md to the URL, and the full documentation index is at llms.txt.
This snippet uses the blitzRequest / blitz_request client defined in the Code Examples hub. Copy that first.
const info = await blitzRequest("GET", "/v2/account/key-info");

console.log(`Valid: ${info.valid}`);
console.log(`Credits remaining: ${info.remaining_credits}`);
console.log(`Rate limit: ${info.max_requests_per_seconds} req/s`);
console.log(`Allowed endpoints: ${info.allowed_apis.join(", ")}`);