A daily rotating spotlight on one paid x402 endpoint from the ForgeMesh fleet: what it doe
A daily rotating spotlight on one paid x402 endpoint from the ForgeMesh fleet: what it does, what it costs, its input schema, a sample response, and the exact call to make. Deterministic by UTC date, so agents and humans checking on the same day see the same pick. Optional date parameter (YYYY-MM-DD) previews past or future days. One call, one new capability discovered.
1000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-17
updated
Provider
x402.forgemesh.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x84A1827F1705C257e80771fDc2B152Aea4A57a08",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"date": "2026-07-18"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"catalog_generated_at": "2026-07-18T16:21:11.232Z",
"date": "2026-07-18",
"featured": {
"category": "utility-grid",
"description": "Recent earthquakes API: latest global quakes above your magnitude threshold from a real-time seismic feed…",
"example_output": {
"attribution": "U.S. Geological Survey (public domain)",
"data": {
"type": "FeatureCollection"
}
},
"host": "x402.forgemesh.io",
"input_schema": {
"properties": {
"min_magnitude": {
"description": "Minimum magnitude, default 4",
"type": "string"
}
},
"type": "object"
},
"method": "POST",
"price": "$0.005",
"product_id": "utility-grid",
"product_name": "ForgeMesh Utility Grid",
"route": "/recent-earthquakes"
},
"full_product_sheet": "POST https://x402.forgemesh.io/fleet-product-detail ($0.05) with {\"product\":\"utility-grid\"} for every route, schema, and worked example on ForgeMesh Utility Grid.",
"pool_size": 547,
"rotation": "deterministic by UTC date — same date always returns the same pick; every route in the fleet gets its day",
"try_it": "POST https://x402.forgemesh.io/recent-earthquakes — the first bare call returns HTTP 402 with exact USDC payment requirements (Base mainnet); settle with any x402 client and retry to get the data."
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"date": {
"description": "Optional: preview a specific UTC day's pick, format YYYY-MM-DD. Defaults to today.",
"type": "string"
}
},
"required": [],
"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"
}
},
"info": {
"required": false
},
"offer-receipt": {
"info": {
"offers": [
{
"acceptIndex": 0,
"format": "eip712",
"payload": {
"amount": "1000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"network": "eip155:8453",
"payTo": "0x84A1827F1705C257e80771fDc2B152Aea4A57a08",
"resourceUrl": "https://x402.forgemesh.io/the-daily-402",
"scheme": "exact",
"validUntil": 1789615704,
"version": 1
},
"signature": "0x8b2b6fdd365fa543ec3cb21b324ad5e5aa62fa970f72dcf08fc3d89dbeb282af7c2920002a4c04cdba6f330e340b232a243ee37b38ac1f782343645024755acf1b"
}
]
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"offers": {
"items": {
"properties": {
"acceptIndex": {
"type": "integer"
},
"format": {
"type": "string"
},
"payload": {
"properties": {
"amount": {
"type": "string"
},
"asset": {
"type": "string"
},
"network": {
"type": "string"
},
"payTo": {
"type": "string"
},
"resourceUrl": {
"type": "string"
},
"scheme": {
"type": "string"
},
"validUntil": {
"type": "integer"
},
"version": {
"type": "integer"
}
},
"required": [
"version",
"resourceUrl",
"scheme",
"network",
"asset",
"payTo",
"amount"
],
"type": "object"
},
"signature": {
"type": "string"
}
},
"required": [
"format",
"signature"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"offers"
],
"type": "object"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"id": {
"maxLength": 128,
"minLength": 16,
"pattern": "^[a-zA-Z0-9_-]+$",
"type": "string"
},
"required": {
"type": "boolean"
}
},
"required": [
"required"
],
"type": "object"
}
}Use it
curl
curl "https://x402.forgemesh.io/the-daily-402" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://x402.forgemesh.io/the-daily-402");
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://x402.forgemesh.io/the-daily-402")
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/14232.json, and this resource appears in /discovery/resources and /discovery/search.