Test endpoint for verifying x402 payment integration end to end
Test endpoint for verifying x402 payment integration end to end. Returns a static greeting in the Agent Tollbooth standard response envelope. Not a data product — use it to smoke-test your x402 client for $0.001 before calling our compliance endpoints.
1000 (raw units)
price
7
calls / 30d
4
unique payers
2026-08-31
updated
Provider
tollbooth-hello-testnet.sjwilliams8.workers.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:84532",
"payTo": "0xb3e7993Ed2FC2C79FFF220620240f298BBa9bF5B",
"asset": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"amount": "1000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"data": {
"message": "hello, agent"
},
"meta": {
"disclaimer": "This response is an assistive screening signal derived from public government data. It is not a certified compliance determination, a consumer report, or legal advice.",
"generated_at": "2026-07-05T12:00:00.000Z",
"service": "hello",
"source_datasets": [],
"version": "0.1.0"
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {},
"required": [],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://tollbooth-hello-testnet.sjwilliams8.workers.dev/hello" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://tollbooth-hello-testnet.sjwilliams8.workers.dev/hello");
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://tollbooth-hello-testnet.sjwilliams8.workers.dev/hello")
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/4860.json, and this resource appears in /discovery/resources and /discovery/search.