Business listings around a coordinate: name, category, address, phone, website, rating — l
Business listings around a coordinate: name, category, address, phone, website, rating — lead lists for local outreach
50000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-08
updated
Provider
agent.connskill.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x43B85AE58f0A2505c710Bc715d6f3EB16b1f63dE",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 120
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"limit": 10,
"location_coordinate": "48.137154,11.576124,10",
"query": "pizza"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"items": [
{
"address": "Musterweg 5, 80331 München",
"category": "Pizza restaurant",
"phone": "+49 89 654321",
"rating": 4.6,
"reviews": 320,
"title": "Pizzeria Roma",
"url": "https://pizzeria-roma.de"
}
],
"status": "delivered"
},
"type": "json"
}
},
"schema": {
"properties": {
"input": {
"properties": {
"body": {
"properties": {
"categories": {
"description": "Category slugs, e.g. [\"pizza_restaurant\"] (optional)",
"items": {
"type": "string"
},
"type": "array"
},
"limit": {
"default": 10,
"maximum": 50,
"type": "integer"
},
"location_coordinate": {
"description": "\"lat,lon,radiusKm\", e.g. \"48.137154,11.576124,10\"",
"type": "string"
},
"query": {
"description": "Business name/title contains … (optional)",
"type": "string"
}
},
"required": [
"location_coordinate"
],
"type": "object"
}
}
},
"output": {
"properties": {
"example": {
"items": [
{
"address": "Musterweg 5, 80331 München",
"category": "Pizza restaurant",
"phone": "+49 89 654321",
"rating": 4.6,
"reviews": 320,
"title": "Pizzeria Roma",
"url": "https://pizzeria-roma.de"
}
],
"status": "delivered"
}
}
}
}
}
}
}Use it
curl
curl "https://agent.connskill.com/v1/local-businesses" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://agent.connskill.com/v1/local-businesses");
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://agent.connskill.com/v1/local-businesses")
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/6874.json, and this resource appears in /discovery/resources and /discovery/search.