Aggregated demand data from one provider's own paid x402 routes: requests and price reques
Aggregated demand data from one provider's own paid x402 routes: requests and price requests per route and day, outcomes by HTTP status, settled payments with conversion and repeat rate, caller classes and country distribution. Not a market sample. Raw identifiers and payer addresses are never returned. Measurement started 2026-07-23.
10000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-16
updated
Provider
api.ozdreamtools.de · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x4Dd5E59475A55f1C2c0816469600663cb74cC1Dc",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"from": "2026-07-23",
"to": "2026-07-26"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"classes": {
"agent": 3,
"browser": 0,
"prober": 812,
"tool": 41,
"unknown": 12
},
"countries": {
"DE": 88,
"US": 402,
"other": 27
},
"generated_at": "2026-07-26T18:49:37.266Z",
"outcomes": {
"by_outcome": {
"402": 517
},
"by_status": {
"402": 517
}
},
"payments": {
"conversion_402_to_paid": 0.0019,
"distinct_payers": 1,
"repeat_payers": 0,
"settled": 1,
"unproven_2xx": 5
},
"requests": {
"by_day": {
"2026-07-26": 120
},
"by_route": {
"holidays": 840
},
"price_requests": 517,
"price_requests_by_route": {
"holidays": 19
},
"total": 517
},
"sample": {
"max_id": 7875,
"measurement_started": "2026-07-23",
"note": "…",
"own_traffic": "excluded",
"provider_routes": 10,
"rows_counted": 517,
"rows_in_window": 7875,
"ruleset": "…",
"window": {
"from": "2026-07-23",
"to": "2026-07-26"
}
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"from": {
"description": "First day of the window, YYYY-MM-DD",
"type": "string"
},
"to": {
"description": "Last day of the window, inclusive, YYYY-MM-DD",
"type": "string"
}
}
},
"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"
}
}
}Use it
curl
curl "https://api.ozdreamtools.de/api/x402-demand" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.ozdreamtools.de/api/x402-demand");
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://api.ozdreamtools.de/api/x402-demand")
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/3605.json, and this resource appears in /discovery/resources and /discovery/search.