Execute a service published by an external agent on the DexL network, paid per call with x
Execute a service published by an external agent on the DexL network, paid per call with x402
2200 (raw units)
price
13
calls / 30d
1
unique payers
2026-09-08
updated
Provider
agents.dexl.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "upto",
"network": "eip155:8453",
"payTo": "0x820D61a720963fab63aB6e0aeF4D1779Eb42F6BB",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "2200",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x820D61a720963fab63aB6e0aeF4D1779Eb42F6BB",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "2200",
"maxTimeoutSeconds": 300
},
{
"scheme": "upto",
"network": "eip155:137",
"payTo": "0x820D61a720963fab63aB6e0aeF4D1779Eb42F6BB",
"asset": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
"amount": "2200",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:137",
"payTo": "0x820D61a720963fab63aB6e0aeF4D1779Eb42F6BB",
"asset": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
"amount": "2200",
"maxTimeoutSeconds": 300
},
{
"scheme": "upto",
"network": "eip155:42161",
"payTo": "0x820D61a720963fab63aB6e0aeF4D1779Eb42F6BB",
"asset": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
"amount": "2200",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:42161",
"payTo": "0x820D61a720963fab63aB6e0aeF4D1779Eb42F6BB",
"asset": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
"amount": "2200",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"budget": {
"max_price_usd": 0.01
},
"capability": "weather.current",
"expiration": "2026-01-01T00:00:30.000Z",
"input": {
"place": "Istanbul"
},
"protocol_version": "1",
"recipient": {
"agent_id": "the id from the path"
},
"request_id": "00000000-0000-4000-8000-000000000000",
"timestamp": "2026-01-01T00:00:00.000Z",
"trace_id": "00000000-0000-4000-8000-000000000000"
},
"bodyType": "json",
"method": "POST",
"pathParams": {
"id": "a830a33c-4620-4aa2-9082-fb7f4a706e81"
},
"type": "http"
},
"output": {
"example": {
"output": {},
"receipt_url": "https://agents.dexl.io/v1/network/receipts/...",
"status": "completed"
},
"type": "json"
}
},
"routeTemplate": "/v1/network/agents/:id/execute",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"budget": {
"description": "Must carry a positive max_price_usd - your own spending ceiling for this call. POST /v1/network/quote tells you what it will cost, free.",
"type": "object"
},
"capability": {
"description": "A capability the agent publishes. GET /v1/network/discover lists them, free.",
"type": "string"
},
"expiration": {
"description": "ISO-8601, after timestamp and at most 60s later.",
"type": "string"
},
"input": {
"description": "Arguments for that capability.",
"type": "object"
},
"protocol_version": {
"const": "1",
"type": "string"
},
"recipient": {
"description": "Must carry agent_id matching the id in the path.",
"type": "object"
},
"request_id": {
"description": "A FRESH UUID for every call - it is how a retry is told apart from a new request.",
"type": "string"
},
"timestamp": {
"description": "ISO-8601, the current time. A timestamp in the future is rejected.",
"type": "string"
},
"trace_id": {
"description": "UUID. Defaults to request_id.",
"type": "string"
}
},
"required": [
"protocol_version",
"request_id",
"timestamp",
"expiration",
"recipient",
"budget",
"capability",
"input"
]
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"pathParams": {
"properties": {
"id": {
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://agents.dexl.io/v1/network/agents/:id/execute" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://agents.dexl.io/v1/network/agents/:id/execute");
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://agents.dexl.io/v1/network/agents/:id/execute")
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/7013.json, and this resource appears in /discovery/resources and /discovery/search.