Developers
API reference
A clean, predictable REST API over HTTPS. Everything in the dashboard is available programmatically, with a live OpenAPI specification you can explore.
Base URL
All endpoints live under the versioned prefix. Your account base URL is shown in the dashboard.
https://api.glytos.com/api/v1Authentication
Create an API key in the dashboard and send it in the X-API-Key header (a bearer token from the login flow also works). Keys are scoped to your organization; treat them like passwords.
X-API-Key: gly_••••••••••••••••••••••••Quickstart
List your agents to confirm the connection works:
curl https://api.glytos.com/api/v1/workflows \
-H "X-API-Key: $GLYTOS_API_KEY" \
-H "Content-Type: application/json"Resources
Agents and workflows
Calls
Phone numbers
Knowledge base
Sessions
Webhooks and keys
Webhooks
Subscribe to events (call started, completed, transcript ready, analysis done, and more). Every delivery is signed so you can verify it came from Glytos, and failed deliveries are retried.
Rate limits
Requests are rate-limited per IP, per organization, and per API key. When you exceed a limit the API returns 429 with headers describing when to retry. Live calls per organization can also be capped.
Model Context Protocol
Glytos also exposes its capabilities as an MCP server, so you can drive it from MCP-compatible AI tools and IDEs.
python -m glytos.mcpExplore the full reference
The complete, always-current endpoint list, request and response shapes, and an interactive console: