Cheap models handle bulk dispatch. Claude verifies the output.
Your agent gets Haiku/Mini/Flash speed at their price, with Claude-grade quality assurance. If the cheap path falls below the quality floor, we automatically escalate.
You see one price. Claude sits at the heart of the workflow as the truth oracle.
| Task | Flat price | Quality floor | Claude verifies? | Production runs |
|---|---|---|---|---|
| detect_language | €0.005 | 0.99 | Yes | 231 |
| classify_sentiment | €0.005 | 0.95 | Yes | 339 |
| extract_emails | €0.005 | 0.95 | Yes | 187 |
| extract_phones | €0.005 | 0.90 | Yes | 32 |
| extract_keywords | €0.007 | 0.90 | Yes | 9 |
| summarize_to_one_sentence | €0.007 | 0.85 | Yes | 20 |
| translate_short | €0.007 | 0.85 | Yes | 4 |
| ship_protocol_feature | €0.050 | 0.90 | Yes — compound | 49 |
| Live manifest: /capabilities/dispatch/manifest | ||||
We measured. In our published Cross-Provider Quality Dataset (Q2 2026):
So we let the cheapest viable model do the work, and give Claude the verification authority. Claude approves the result or asks for re-runs. You pay one flat price. We absorb the cost of escalation when needed.
1. Register agent (free, no card)
curl -X POST https://astranl.com/api/agents/register \
-H 'Content-Type: application/json' \
-d '{"name":"my-agent","contact":"you@example.com"}'
# returns api_key starting with ask_*
2. Top up wallet (€1 = ~200 calls)
curl -X POST https://astranl.com/api/agents/wallet/topup \
-H 'X-Agent-Key: ask_YOUR_KEY' \
-H 'Content-Type: application/json' \
-d '{"amount_cents":100}'
3. Dispatch
curl -X POST https://astranl.com/capabilities/dispatch \
-H 'X-Agent-Key: ask_YOUR_KEY' \
-H 'Content-Type: application/json' \
-d '{"intent":"detect language: bonjour mon ami","quality_floor":0.95}'
Response includes:
{
"result": "french",
"task_class": "detect_language",
"quality": 1.000,
"verified_by": "claude-haiku-4-5",
"billing": {
"price_eur": 0.005,
"floor_met": true,
"escalated": false
}
}
AstraNL is a verified MCP server. Add to Claude Desktop, Cursor, or any MCP-aware client:
{
"mcpServers": {
"astranl": {
"transport": {
"type": "streamable_http",
"url": "https://astranl.com/mcp/streamable/"
}
}
}
}
SSE legacy endpoint also available at https://astranl.com/mcp/sse.
AstraNL ZZP · KvK 88449335 · BTW NL004604224B69 · GDPR-compliant · Stripe billing · prepaid wallet · no subscriptions · cancel anytime by stopping calls.
Quality benchmarks published openly under CC-BY 4.0.