Agent
Ask the Clarm agent a question
Sends one natural-language question to the Clarm agent and returns the complete answer with source citations. No authentication required. The agent answers questions about the Clarm product, pricing, integrations, compliance posture, and use cases, grounded in the approved content indexed for the public clarm.com agent. Rate limited at the edge: 20 requests per minute per client IP and 200 requests per hour across the endpoint. Over-limit requests return 429 with a Retry-After header carrying the number of seconds to wait.
post/api/agent/chat
Request body
Example request
{
"message": "What does Clarm do and how much does it cost?"
}Response
The agent answered.
Example response
{
"answer": "Clarm Atlas lets non-technical teams build AI coworker agents from building blocks pre-approved by IT and compliance.",
"citations": [
{
"title": "Clarm pricing",
"url": "https://clarm.com/pricing/"
}
],
"meta": {
"model": "clarm-agent",
"llms_txt": "https://clarm.com/llms.txt",
"llms_full_txt": "https://clarm.com/llms-full.txt"
}
}