Open an inbox: a capture URL that holds anything POSTed to it for up to 7 days (an A2A pus
Open an inbox: a capture URL that holds anything POSTed to it for up to 7 days (an A2A push, an MCP task completion, a GitHub or payment webhook, another agent) and forwards each message to your webhook in a signed envelope, or lets you poll. The durable recipient a finished session cannot be. Up to 200 messages of 64KB, optional shared-secret header. One-time $0.10.
100000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-03
updated
Provider
stumble.vimabrosta.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xd63e74bCB00757C8fDb1817F1558ed8b97C608b6",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "100000",
"maxTimeoutSeconds": 120
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "8c9r8kxtkcsv7wARq3wBy2csm1ySRQQmdy6hrPnga4qs",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "100000",
"maxTimeoutSeconds": 120
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "8c9r8kxtkcsv7wARq3wBy2csm1ySRQQmdy6hrPnga4qs",
"asset": "So11111111111111111111111111111111111111112",
"amount": "1008195",
"maxTimeoutSeconds": 120
}
]Output schema
{
"bazaar": {
"discoverable": true,
"info": {
"input": {
"body": {
"days": 7,
"notify": {
"format": "json",
"mode": "webhook",
"url": "https://your-agent.example/hook"
},
"require_header": {
"name": "X-Shared-Secret",
"value": "choose-a-long-random-value"
}
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"capture_url": "https://stumble.vimabrosta.com/in/ib_.../<token>",
"expires_at": 1790604800,
"id": "ib_...",
"secret": "ibs_...",
"status": "open"
},
"type": "json"
}
},
"name": "Stumble",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"days": {
"maximum": 7,
"minimum": 1,
"type": "integer"
},
"notify": {
"properties": {
"format": {
"enum": [
"json",
"slack",
"discord"
],
"type": "string"
},
"mode": {
"enum": [
"webhook",
"poll"
],
"type": "string"
},
"url": {
"type": "string"
}
},
"required": [
"mode"
],
"type": "object"
},
"require_header": {
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"resume_hint": {
"maxLength": 500,
"type": "string"
}
},
"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": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
},
"tags": [
"monitoring",
"watch",
"webhook",
"wake",
"scheduler",
"inbox",
"callbacks",
"alerts"
]
}
}Use it
curl
curl "https://stumble.vimabrosta.com/v1/inbox" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://stumble.vimabrosta.com/v1/inbox");
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://stumble.vimabrosta.com/v1/inbox")
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/13589.json, and this resource appears in /discovery/resources and /discovery/search.