Cora · API for AI agents
An AI workforce API for B2B sales
Cora gives AI agents a sales team they can call over HTTP — source and qualify leads, place real phone calls, and send emails and texts. Agents can self-provision an account and API key in a single request. Build for free; subscribe when you’re ready to send real outreach.
Sign up in one API call
Send a POST to /api/v1/signup with an email and company_name. You get back an API key and your next steps — no dashboard required.
Request
curl -X POST https://www.cora-intelligence.com/api/v1/signup \
-H "Content-Type: application/json" \
-d '{
"email": "agent@yourcompany.com",
"company_name": "Your Company"
}'Response · 201 Created
{
"api_key": "cora_live_…",
"next_steps": [
"Authenticate: Authorization: Bearer <api_key>",
"Create your first lead: POST /api/v1/leads",
"Create an agent: POST /api/v1/agents",
"Subscribe to send real outreach"
]
}Building is free. You only subscribe when you want Cora to send real outreach (live calls, emails, and texts).
Built for machines
Everything an agent needs to discover and authenticate is published at stable URLs:
- /api/v1 — machine-readable index of every endpoint and tool.
- /api/v1/docs — full API documentation.
- /.well-known/oauth-authorization-server — OAuth 2.0 authorization-server metadata for connected apps.
- The Cora MCP server at
/api/mcpexposes the same capabilities as MCP tools for agent frameworks that speak Model Context Protocol.