X-ACCESS-TOKEN header. There are no session cookies or OAuth flows for these endpoints.
Generate an access token
Access tokens are scoped to your Fliqr AI account. To generate a token:- Open your Fliqr AI dashboard and go to Settings → API.
- Click Create API Key.
- Give the key a descriptive name (for example,
production-backendorstaging-integration). - Copy the key immediately — it is shown only once. If you lose it, revoke it and create a new one.
- Store the key in an environment variable or secrets manager before closing the dialog.
Pass the token in requests
Include the token in theX-ACCESS-TOKEN header on every request:
401 Unauthorized response.
Store keys as environment variables
Never hard-code API keys in source files. Set the key as an environment variable and reference it from your application:Rotate API keys
Rotate API keys periodically and always after a suspected exposure:- Go to Settings → API and create a replacement key.
- Update your application or environment to use the new key.
- Return to Settings → API, find the old key, and revoke it.
Try it in the playground
Open any endpoint under the API Reference tab. Enter your access token in the authorization field (labeledX-ACCESS-TOKEN), fill in parameters, and send the request from the interactive playground.
Start with Get account information to verify your token.
What’s next
Rate limits
Understand request budgets, headers, and how to handle 429 responses.
Error codes
Browse error codes and how to interpret the error response object.