DocsAPI Reference
API Reference
The Yapsolutely REST API lets you manage agents, calls, phone numbers, and transcripts programmatically. All endpoints require authentication via API key.
HTTPS only
Bearer token auth
JSON responses
Base URL
https://api.yapsolutely.com/v1Authentication
POST
/api/v1/auth/tokenPOST
/api/v1/auth/revokeAgents
GET
/api/v1/agentsPOST
/api/v1/agentsGET
/api/v1/agents/:idPATCH
/api/v1/agents/:idDELETE
/api/v1/agents/:idCalls
GET
/api/v1/callsGET
/api/v1/calls/:idGET
/api/v1/calls/:id/transcriptPOST
/api/v1/calls/:id/exportPhone Numbers
GET
/api/v1/numbersPOST
/api/v1/numbersPATCH
/api/v1/numbers/:idDELETE
/api/v1/numbers/:idWebhooks
GET
/api/v1/webhooksPOST
/api/v1/webhooksDELETE
/api/v1/webhooks/:idTranscripts
GET
/api/v1/transcriptsGET
/api/v1/transcripts/:idGET
/api/v1/transcripts/:id/segmentsAuthentication
Include your API key in the Authorization header of every request.
curl https://api.yapsolutely.com/v1/agents \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json"