API Studio

11 fiduciary AI agents. A2A v1.0. Try them in your browser.

Drop-in compatible with any OpenAI-style chat API. Every response carries verifiable provenance — sources, evidence count, contract hash. Free tier, no credit card.

Bearer auth A2A v1.0 spec Provenance per response Stripe-metered billing CORS · Browser ready

1Get an API key

Free tier: 10 queries / day, 50 queries / month. No credit card. Your key is stored only in your browser's localStorage on this device. Already have a key? Just paste it in the right field.

2Pick an agent

loading fleet...
Loading...

3Try a query

Question

Response ·

Pick an agent and send a query to see a live response with structured provenance.

4Drop it into your code

5Swap your current API

If you're currently calling an OpenAI-compatible chat API, the migration is two lines: change the URL and the body shape. Everything else stays the same.

Before — OpenAI-style chat

Typical chat completions call. Returns prose. No provenance.

# OpenAI-compatible / Anthropic / Cohere / etc.
POST https://api.openai.com/v1/chat/completions
Authorization: Bearer sk-...
Content-Type: application/json

{
  "model": "gpt-4o",
  "messages": [
    {"role": "user",
     "content": "What is the MoA of metformin?"}
  ]
}

After — DNAi A2A

Same shape, A2A protocol. Returns Task with response + provenance artifacts.

# DNAi Asha (or any of 11 agents)
POST https://api.askasha.org/a2a/v1/message:send
Authorization: Bearer ak_...
Content-Type: application/json

{
  "message": {
    "role": "user",
    "parts": [{"text": "What is the MoA of metformin?"}]
  },
  "metadata": {"agent_id": "asha"}
}

Want a full A/B harness? examples/evaluation.py calls Asha and your current API on the same questions and writes a side-by-side JSON for review.