Skip to main content
Generate keys in the Dashboard → API Keys.
Treat your API key like a password. Never commit it to source control, never expose it in client-side code, never paste it into a chat session.

Get your API key

Sign in

Go to llmquantdata.com and sign up (or log in).

Generate a key

Open the DashboardAPI KeysGenerate. Copy it once — it won’t be shown again.

Store as env var

export LLMQUANT_API_KEY=your_api_key_here
Add it to your shell profile (~/.zshrc, ~/.bashrc) for persistence. Both MCP and HTTP usage below read from this single source.

How to use it

Error codes

StatusMeaning
200Success
400Bad request — invalid or missing parameters
401Unauthorized — invalid or missing API key
402Payment required — endpoint requires a paid plan
404Not found — ticker or resource does not exist
429Rate limit exceeded

Rate limits

Rate limits vary by plan. If you exceed your limit you will receive a 429 response. Contact us to discuss higher limits.
An MCP runtime that retries silently on 429 can burn credits fast. Inspect the agent’s tool-call log when debugging unexpected billing.

Rotate or revoke a key

Keys can be rotated or revoked from the Dashboard → API Keys. Revoking takes effect immediately; in-flight requests return 401.
After rotation, update LLMQUANT_API_KEY in every environment that uses MCP — your shell profile, your CI secrets, your team’s onboarding templates.