Get started with Ringg AI’s voice capabilities in minutes
X-API-KEY
const options = { method: 'GET', headers: { 'X-API-KEY': 'your-api-key-here' } }; fetch('https://prod-api.ringg.ai/ca/api/v0/workspace', options) .then(response => response.json()) .then(response => console.log(response)) .catch(err => console.error(err));
const options = { method: 'POST', headers: { 'X-API-KEY': 'your-api-key-here', 'Content-Type': 'application/json' }, body: JSON.stringify({ "name": "John Doe", "mobile_number": "+1234567890", "agent_id": "your-agent-id", "from_number_id": "your-from-number-id", "custom_args_values": { "custom_variable_1": "value1", "custom_variable_2": "value2" } }) }; fetch('https://prod-api.ringg.ai/ca/api/v0/calling/outbound/individual', options) .then(response => response.json()) .then(response => console.log(response)) .catch(err => console.error(err));
{ "Call Status": "success", "data": { "Unique Call ID": "dd6c63db-66c7-42ae-9a82-e4988bef428e", "Call Direction": "outbound", "Call Status": "registered", "From Number": "+918035737034", "To Number": "+919994008915", "Initiated at": "2025-04-24T04:22:47.722294", "Agent ID": "cdcf1b39-173a-4492-8396-c493123ea443", "System generated message": "Call initiated successfully" } }
Check out our API Reference for detailed information on all available endpoints.