Skip to main content
Version: 1.0.0

Authentication

Resemble uses API keys to allow access to the API. You can register a new Resemble API key at our developer portal.

Resemble expects for the API key to be included in all API requests to the server in an header that looks like the following:

Authorization: Token token=YOUR_API_TOKEN

Make sure to replace YOUR_API_TOKEN with your API key.

info

To authorize each request make sure that the base URL is https://app.resemble.ai. You must attached your API key in the Token header as shown below.

# With shell, you can just pass the correct header with each request
curl "api_endpoint_here" \
-H "Authorization: Token token=YOUR_API_TOKEN"