Documentation Index
Fetch the complete documentation index at: https://docs.fluximage.io/llms.txt
Use this file to discover all available pages before exploring further.
Every request to the Fluximage API must be authenticated with an API key passed as a Bearer token in the Authorization header. You generate and manage your key from Dashboard > Settings > API Key. API access requires the Agency plan.
Sending your API key
Include your key in the Authorization header on every request:
Authorization: Bearer flx_live_your_key_here
Example
curl https://fluximage.app/api/usage \
-H "Authorization: Bearer flx_live_your_key_here"
Your API key always starts with flx_live_ followed by 40 hexadecimal characters:
flx_live_<40 hex characters>
You can identify your key in the dashboard by its masked prefix (for example, flx_live_a3b4c...f8e9).
Getting your API key
Navigate to API settings
Go to Settings > API Key in the left navigation.
Generate a key
Click Generate API Key. Your full key is displayed once — copy it immediately.
API key generation requires the Agency plan. If you don’t see the option, upgrade your plan first.
Visit Settings > API Keys to manage your key.
Error responses
If your key is missing, malformed, or invalid, the API returns:
HTTP 401 Unauthorized
{ "error": "Unauthorized" }
Security
Your API key is shown only once when it is generated. Store it in a secure location such as an environment variable or a secrets manager — you cannot retrieve the full key again from the dashboard.
Rolling (regenerating) your key immediately invalidates the previous one. Update all integrations with the new key before regenerating to avoid downtime.