Route a natural-language agent intent to the correct paid fleet service
Route a natural-language agent intent to the correct paid fleet service. Returns the chosen service, a calibrated confidence score, params extracted from the intent, and ready-to-use call instructions (URL, method, price, x402 terms). Use the free /classify first to preview confidence.
500000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-12
updated
Provider
dispatch-x402.fly.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x7861db4efc14a1ed5dd8c96c528a3796560f1393",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "500000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"intent": "score this cold email for me",
"params": {}
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"call": {
"method": "POST",
"network": "eip155:8453",
"price": "$0.01",
"url": "https://power-pack-x402.fly.dev/api/score-email"
},
"confidence": 0.93,
"intent": "score this cold email for me",
"ok": true,
"route": {
"id": "power-pack",
"name": "Power Pack — outreach email scorer"
},
"tier": "auto"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"intent": {
"description": "Natural-language task to route",
"type": "string"
},
"params": {
"description": "Optional downstream params to merge",
"type": "object"
}
},
"required": [
"intent"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"call": {
"type": "object"
},
"confidence": {
"type": "number"
},
"error": {
"type": "string"
},
"intent": {
"type": "string"
},
"ok": {
"type": "boolean"
},
"params": {
"type": "object"
},
"route": {
"type": "object"
},
"tier": {
"enum": [
"auto",
"confirm",
"ambiguous"
],
"type": "string"
}
},
"required": [
"ok"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://dispatch-x402.fly.dev/dispatch" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://dispatch-x402.fly.dev/dispatch");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://dispatch-x402.fly.dev/dispatch")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/15182.json, and this resource appears in /discovery/resources and /discovery/search.