Creating an API token

To interact with any endpoint in the Findly API, you’ll first need to authenticate. This is done by signing in as a user and generating an API token.

1

Sign into the Findly app

Go to the Findly App to sign in

2

Navigate to Account settings

Click on your avatar on the top-right and then on your name / email to access your account settings page

3

Create a new API token

Scroll down to the ‘API Tokens’ section and click ‘New Token’ to generate your API token.

4

Set as header in your requests

Include your new API token in the Authorization header of your requests, prefixed with Bearer , to authenticate with the Findly API.

curl \
https://api.findly.ai/[my-endpoint] \
--header "Authorization: Bearer [my-api-token-value]"

🎉 Congratulations! You are ready to get started using the Findly API!

As a next step, consider exploring how to start a conversation.