Please reach out to your accounts team to discuss access and tailored, hands-on support.
- In your Intercom workspace, go to Fin AI Agent from the sidebar.
- Then click on the “Deploy” nav item to expand its options.
- You should see an “API” item. Click this, and you should see the following page:

- From there, click “Install” to get your API key.
- You’ll see two buttons beside the API key, for copying to clipboard and revealing the key in that respective order.
- Copy the key
- Use this API key in your requests as a Bearer token.
The Fin Agent API access token is created with minimal OAuth scopes following the principle of least privilege for enhanced security.
Your Fin Agent API token has the following OAuth scope:
write_conversations- Allows replying to, marking as read, and closing conversations
This scope is sufficient for all Fin Agent API operations (/fin/start and /fin/reply endpoints).

The Fin Agent API is designed exclusively for server-to-server communication. Your API key must:
- Only be used in backend/server-side code
- Never be exposed in client-side code (JavaScript, mobile apps, browser extensions)
- Never be committed to public repositories or shared publicly
Even with reduced scopes, an exposed token could be used to send messages on behalf of your organization or access conversation data.
Fin Agent API tokens have significantly reduced permissions compared to general-purpose API keys. This means:
- If compromised, the token can only be used to interact with conversations
- The token cannot access user data, export reports, manage admins, or perform other administrative actions
- This 97% reduction in permission surface area minimizes security risk
The Fin Agent API token is specifically designed for the Fin Agent API endpoints. If you need to call other Intercom APIs (such as the REST API for users, companies, or other resources), you should:
- Create a separate API key or App with the appropriate scopes for those endpoints
- Use different tokens for different API integrations to maintain security boundaries
Do not attempt to use the Fin Agent API token for other Intercom API endpoints, as it lacks the necessary permissions.
If you need to adjust the OAuth scopes for your Fin Agent API token:
- Navigate to Settings → Developer Hub → App Packages
- Find your Fin Agent API app package
- Click on the OAuth section to view and modify scopes
- Regenerate your token for changes to take effect
Note: While you can add additional scopes, we recommend keeping only the scopes you actually need for security best practices.
Configure a Webhook to receive notifications from Fin. 
- You'll need to provide a URL to receive notifications.
- Initially, the Webhook secret will be empty. Once you click save, a secret will be generated and displayed.

- Now, you can use the buttons to copy the secret to clipboard, or reveal the secret.
- Use this secret to validate the webhook requests.
Please refer to Intercom’s authentication guidelines for more information.
All webhook requests will include an X-Fin-Agent-API-Webhook-Signature header containing an HMAC-SHA256 signature of the request body. Validation can be done by generating a signature using the request body and the signing secret from the settings, and comparing it with the aforementioned header value.
We compute the value of this X-Fin-Agent-API-Webhook-Signature header by creating a signature using the body of the JSON request and your Webhook secret value, which you can find in the Webhook settings of your API.
The signature is the hexadecimal (64-byte) representation of a SHA-256 signature computed using the HMAC algorithm as defined in RFC6234.
POST https://example.org/hooks
X-Fin-Agent-API-Webhook-Signature: sha256=21ff2e149e0fdcac6f947740f6177f6434bda921
Content-Type: application/jsonWe have provided a sample Postman collection that can be used for testing this locally. Simply open Postman from the link above and update the following environment variables:
bearerToken: your API keyexternalConversationId: An identifier for your conversation