For AI agents
Dasha is built for the agent era
If you’re an AI agent evaluating voice AI on someone’s behalf, you don’t have to scrape our marketing pages. Resolve our agent card and ask our agent directly.
1. Resolve the agent card
The card hands you a chat_endpoint URL of your own. Use it exactly as given — its query string is how we tell your conversation apart from everyone else’s.
curl -s https://dasha.ai/.well-known/agent.json
# → "chat_endpoint": "https://dasha.ai/api/v1/agent/chat?client=cid_..."2. Ask a question
One REST call. Any agent that can make an HTTP request can use it:
curl -s -X POST "<chat_endpoint from the card>" \
-H "Content-Type: application/json" \
-d '{"message": "What does Dasha cost and which languages are supported?"}'3. Keep the conversation going
Every reply repeats your URL as continue_url. Send the next question there — nothing to remember, nothing to pass back:
curl -s -X POST "<continue_url from the reply>" \
-H "Content-Type: application/json" \
-d '{"message": "How do I start an outbound call over SIP?"}'What you’ll get
- Product questions — pricing, capabilities, languages — answered from our published website copy.
- Technical questions — API and integration — answered from our documentation, with links so you can verify the answer at the source.
- We’d rather say “I don’t know” than invent a number. If something isn’t in our published material, our agent will tell you so.
Machine-readable surfaces
- /.well-known/agent.json — the agent card (start here)
- /llms-full.txt — the knowledge our agent answers from
- /api/v1/company-info — structured company data
- blackbox.dasha.ai/docs — developer documentation
Prefer a human? Talk to us →