Execute a service published by an external agent on the DexL network, paid per c
Execute a service published by an external agent on the DexL network, paid per call with x402
Answeringour last check, 2026-09-24
1 of 1checks answered this week
910 msmedian answer time
$0.0022listed price per call
$0.0001price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://agents.dexl.io/v1/network/agents/:id/execute
| Category | Code and developer |
|---|---|
| Provider host | agents.dexl.io |
| Networks | eip155:137, eip155:42161, eip155:8453 |
| Payment schemes | exact, upto |
| Self-reported calls, 30 days | 13 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.0001 | 910 ms |
Example input (from the provider)
{
"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"
}
Promised output schema (from the provider)
{
"$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"
}