Welcome
The Reddy API provides endpoints for managing live conversations, call events, and miscellaneous operations. This documentation is generated from our OpenAPI specification.Reddy API Endpoints
View the OpenAPI specification file with Swagger
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Reddy API Reference Documentation
curl -X GET 'https://app.reddy.io/api/v1/endpoint' \
-H 'Authorization: Bearer your_api_key_here'
fetch('https://app.reddy.io/api/v1/endpoint', {
headers: {
'Authorization': 'Bearer your_api_key_here'
}
});
import requests
headers = {
'Authorization': 'Bearer your_api_key_here'
}
response = requests.get('https://app.reddy.io/api/v1/endpoint', headers=headers)
curl -X GET 'https://app.reddy.io/api/v1/endpoint?api_key=your_api_key_here'
Was this page helpful?