- Calling the Fluents.ai HTTP API from your backend.
- Connecting Fluents.ai to other tools that require direct API access.
- One API key per environment.
- No separate account‑wide key.
- No self‑service regeneration today (the key is fixed unless changed by Fluents.ai support).
- Where to find your API key
- Choosing the right environment
- How to use the API key in requests
- Security best practices
- Where to go next
Where to find your API key
-
Open Settings
- In the left‑hand sidebar of the Fluents.ai app, click Settings.
-
Locate your environment
- At the top of the Settings page, in the Environments section, find the row for the environment whose key you want (for example,
defaultorproduction).
- At the top of the Settings page, in the Environments section, find the row for the environment whose key you want (for example,
-
Reveal and copy the key
- In the API Key column:
- Click the eye icon to reveal the key (if it is masked).
- Click the copy icon to copy the key to your clipboard.
- In the API Key column:
staging to production), the API key is different.
Choosing the right environment
Because API keys are per environment, always confirm:- Which environment you are working in (via the environment selector at the top of the app).
- Which environment’s API key you are using in your code or integration.
- Use a staging or test environment key for development and QA.
- Use a production environment key for live traffic.
How to use the API key in requests
When calling the Fluents.ai API, you typically:- Include the API key in an Authorization header.
- Use it from a server‑side environment (not directly from a browser or client app).
- Header name:
Authorization - Header value:
Bearer YOUR_API_KEY_HERE
Authorization: Bearer sk_live_...
API Authentication guide (see Where to go next below).
Security best practices
Treat your API key like a password for that environment:- Do not share it publicly or commit it to version control.
- Do not embed it in client‑side code (browser JavaScript, mobile apps).
Use it from your backend or a secure integration platform. - Store it in a secure secrets manager or environment variables (for example, in your server or CI/CD system).
- Remove or disable the code or integration using that key.
- Contact Fluents.ai support or your Fluents.ai representative to discuss rotation options for that environment.
Where to go next
-
See how to manage environments and users in the
Settings Feature Guide. -
Once your key is set up, explore the full API in the
API Reference.

