Search-grounded answer with source URLs, synthesized by a local LLM with no cloud token de
Search-grounded answer with source URLs, synthesized by a local LLM with no cloud token dependency.
10000 (raw units)
price
5
calls / 30d
2
unique payers
2026-08-30
updated
Provider
jmt-x402-proxy.jmthomasofficial.workers.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x624FaF18C78456C8Da5bf156Cd77c1A2033F21c5",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"q": "What changed in the Base x402 ecosystem this week?"
},
"type": "http"
},
"output": {
"example": {
"answer": "Concise sourced answer…",
"question": "What changed in the Base x402 ecosystem this week?",
"sources": [
"https://example.com/source"
],
"timestamp": 1783720000000
},
"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": {
"q": {
"description": "Question to answer using current web results.",
"minLength": 1,
"type": "string"
}
},
"required": [
"q"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"answer": {
"type": "string"
},
"question": {
"type": "string"
},
"sources": {
"type": "array"
},
"timestamp": {
"type": "number"
}
},
"required": [
"question",
"answer",
"sources",
"timestamp"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://jmt-x402-proxy.jmthomasofficial.workers.dev/v2/api/answer" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://jmt-x402-proxy.jmthomasofficial.workers.dev/v2/api/answer");
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://jmt-x402-proxy.jmthomasofficial.workers.dev/v2/api/answer")
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/747.json, and this resource appears in /discovery/resources and /discovery/search.