The Recall AI SDK uses API key authentication to securely access the Recall AI API. All API requests must include a valid API key.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/sam-ayo/recall_sdk/llms.txt
Use this file to discover all available pages before exploring further.
Getting your API key
To use the SDK, you’ll need an API key from Recall AI. Contact the Recall AI team or check your dashboard to obtain your API key.Basic authentication
Authenticate by passing your API key when initializing the Recall client:How authentication works
The SDK uses token-based authentication. When you initialize the Recall client, your API key is automatically included in all HTTP requests.Authentication implementation
The SDK uses a singleton pattern to create an Axios instance with your API key in the authorization header:Using environment variables
For security best practices, store your API key in environment variables:Example .env file
Authentication errors
If your API key is invalid or missing, you’ll receive an authentication error. Common issues include:- 401 Unauthorized: Invalid or expired API key
- 403 Forbidden: Valid API key but insufficient permissions