Find 5 ranked location, address, hours, and local-context sources using place terms in the
Find 5 ranked location, address, hours, and local-context sources using place terms in the query. Not routing or Maps data.
10000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-31
updated
Provider
web-access-gateway.mattskowronis.workers.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x3a438B911B8E2995a9C855578F95B2889752498F",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "Ekdf1gQA4y7w1w9GFSe9a6GuyQuKCof5wyYTTmyZLeJk",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"query": "robotics integrators near Worcester Massachusetts"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"operation": "geographic_search",
"query": "latest Federal Reserve interest rate decision",
"requested_url": null,
"result_count": 1,
"results": [
{
"author": null,
"content": null,
"content_sha256": null,
"published_at": null,
"rank": 1,
"retrieval_status": "metadata_only",
"score": 0.91,
"snippet": "A compact excerpt from the result.",
"title": "Example result",
"url": "https://example.com/article"
}
],
"retrieved_at": "2026-08-31T12:00:00.000Z",
"schema_version": "1.0",
"warnings": []
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"query": {
"maxLength": 500,
"minLength": 1,
"type": "string"
}
},
"required": [
"query"
]
},
"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": {
"additionalProperties": false,
"properties": {
"operation": {
"enum": [
"search",
"read",
"search_and_read",
"news_search",
"company_search",
"product_search",
"geographic_search"
],
"type": "string"
},
"query": {
"type": [
"string",
"null"
]
},
"requested_url": {
"type": [
"string",
"null"
]
},
"result_count": {
"minimum": 0,
"type": "integer"
},
"results": {
"items": {
"additionalProperties": false,
"properties": {
"author": {
"type": [
"string",
"null"
]
},
"content": {
"type": [
"string",
"null"
]
},
"content_sha256": {
"pattern": "^[a-f0-9]{64}$",
"type": [
"string",
"null"
]
},
"published_at": {
"type": [
"string",
"null"
]
},
"rank": {
"minimum": 1,
"type": "integer"
},
"retrieval_status": {
"enum": [
"complete",
"metadata_only",
"failed"
],
"type": "string"
},
"score": {
"type": [
"number",
"null"
]
},
"snippet": {
"type": "string"
},
"title": {
"type": [
"string",
"null"
]
},
"url": {
"format": "uri",
"type": "string"
}
},
"required": [
"rank",
"title",
"url",
"published_at",
"author",
"score",
"snippet",
"content",
"content_sha256",
"retrieval_status"
],
"type": "object"
},
"type": "array"
},
"retrieved_at": {
"format": "date-time",
"type": "string"
},
"schema_version": {
"const": "1.0",
"type": "string"
},
"warnings": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"schema_version",
"operation",
"query",
"requested_url",
"retrieved_at",
"result_count",
"results",
"warnings"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://web-access-gateway.mattskowronis.workers.dev/v1/geographic" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://web-access-gateway.mattskowronis.workers.dev/v1/geographic");
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://web-access-gateway.mattskowronis.workers.dev/v1/geographic")
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/12435.json, and this resource appears in /discovery/resources and /discovery/search.