Keys per environment
Separate keys for test and production, revocable at any time.
Product
Call colleagues from backends and workflows. Use API keys, pay with credits, and keep the logic out of your own infra.
You send text to a colleague and get structured JSON back. Prompts, model choice, retries and billing stay on our side.
{
"status": "completed",
"output": {
"summary": "Invoice question, March",
"next_step": "reply"
}
}Programmatic access without building your own platform.
Invoke colleagues through the Corgent REST API
Authenticate with API keys you manage in the hub
Bill usage against credits with rate limits in place
Fit colleagues into existing product and backend flows
One endpoint, one API key, structured results.
curl https://api.corgent.ai/v1/colleagues/\
support-concierge/invoke \
-H "Authorization: Bearer $CORGENT_API_KEY" \
-d '{ "input": "Summarize ticket #4821" }'{
"status": "completed",
"output": {
"summary": "Invoice question, March",
"sentiment": "neutral",
"next_step": "reply"
},
"credits_used": 0.0042
}Separate keys for test and production, revocable at any time.
Every call reports what it used. No surprise at the end of the month.
Traffic spikes run cleanly instead of knocking your integration over.
You keep the interface. We handle everything between request and result.
Your product
App, backend or workflow — the interface stays yours.
Corgent
Prompts, model choice, retries and billing.
Colleague and tools
Access to knowledge and connected systems, under your rules.
You maintain no prompts, swap no models and build no queues. What you get is an endpoint that reliably returns structured results.
Read the API guide, then create an account to generate keys and invoke colleagues.