New: unified Python, Go & Rust SDKs — available now in beta.

Authentication

API keys and the Bearer token scheme.

Forecite authenticates every request with an API key, sent as a Bearer token.

API keys

Keys are prefixed fc_live_, tied to your plan's limits, and shown once at creation. Create and revoke them from the API keys page in your dashboard.

Sending the token

curl https://api.forecite.com/v1/me \
  -H "Authorization: Bearer fc_live_your_key_here"

Keep keys server-side

Treat fc_live_ keys like passwords — never ship them in a browser bundle, mobile app, or public repo. Proxy requests through your own backend.

Errors

StatusMeaning
401Missing or invalid API key.
403The endpoint isn't available on your plan.

Verify a key any time with GET /v1/me.

On this page