AgentWire service card for webhook inbox relay and web fetch infrastructure
AgentWire service card for webhook inbox relay and web fetch infrastructure.
1000 (raw units)
price
15
calls / 30d
11
unique payers
2026-09-16
updated
Provider
cdp-agent-0-01.onrender.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xed7d30e8bc643503f9da261ed8e623bb6ecf6189",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"agent_name": "ledger-bot",
"capability": "webhook-inbox"
},
"type": "http"
},
"output": {
"example": {
"endpoint": "https://cdp-agent-0-01.onrender.com/mcp",
"facilitator": "https://api.cdp.coinbase.com/platform/v2/x402",
"payTo": "0xed7d30e8bc643503f9da261ed8e623bb6ecf6189",
"paymentNetwork": "eip155:8453",
"protocol": "MCP over Streamable HTTP + x402 v2 payments",
"service": "AgentWire",
"status": "ready",
"tagline": "Webhook inbox + web fetch + outbound relay for autonomous agents",
"tools": [
{
"name": "create_inbox",
"price": "free"
},
{
"name": "drain_inbox",
"price": "$0.005"
},
{
"name": "peek_inbox",
"price": "$0.002"
},
{
"name": "inbox_stats",
"price": "$0.001"
},
{
"name": "fetch_url",
"price": "$0.012"
},
{
"name": "extract_links",
"price": "$0.008"
},
{
"name": "relay_post",
"price": "$0.015"
},
{
"name": "request_human_captcha_bypass",
"price": "$0.075"
},
{
"name": "ping",
"price": "free"
}
],
"version": "1.2.0",
"webhooks": "https://cdp-agent-0-01.onrender.com/hooks/{inboxId}"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"agent_name": {
"description": "Calling agent identifier for analytics and routing",
"type": "string"
},
"capability": {
"description": "Requested AgentWire capability hint (webhook-inbox, fetch, relay)",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"endpoint": {
"type": "string"
},
"facilitator": {
"type": "string"
},
"payTo": {
"type": "string"
},
"paymentNetwork": {
"type": "string"
},
"protocol": {
"type": "string"
},
"service": {
"type": "string"
},
"status": {
"type": "string"
},
"tagline": {
"type": "string"
},
"tools": {
"items": {
"properties": {
"name": {
"type": "string"
},
"price": {
"type": "string"
}
},
"required": [
"name",
"price"
],
"type": "object"
},
"type": "array"
},
"version": {
"type": "string"
},
"webhooks": {
"type": "string"
}
},
"required": [
"service",
"version",
"status",
"tagline",
"protocol",
"endpoint",
"webhooks",
"paymentNetwork",
"facilitator",
"payTo",
"tools"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://cdp-agent-0-01.onrender.com/" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://cdp-agent-0-01.onrender.com/");
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://cdp-agent-0-01.onrender.com/")
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/808.json, and this resource appears in /discovery/resources and /discovery/search.