# Local Business Listings by Coordinate

> Local Business Listings by Coordinate is a paid API for AI agents from agent.connskill.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-16).

Returns business listings (name, category, address, phone, website, rating) near a given lat/lon coordinate for local lead generation and outreach

## Facts

- Endpoint: POST https://agent.connskill.com/v1/local-businesses
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/local-business-listings-by-coordinate-174eb19a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_O4bYJcFeD-EBoNO_TaEFg

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability local-business-listings-by-coordinate-174eb19a -d '<json body>'
```

Example prompt: Find me up to 20 pizza restaurants within 5km of Munich city center (48.137154, 11.576124) and give me their names, addresses, phone numbers, websites, and ratings so I can put together a lead list.

## When to prefer this

Use this endpoint when you need structured business contact data (name, phone, website, rating) near a geographic point — ideal for building local sales lead lists, competitor research, or vendor discovery. Prefer this over general web search when you need clean, structured results with contact details rather than unstructured web pages.

## Known failure modes

- Invalid or malformed location_coordinate string (wrong format, missing radius)
- Radius too large or coordinate outside supported regions returns empty results
- Category slug not recognized returns no matches
- Limit exceeding 50 is clamped or rejected
- No businesses found for very specific category+location combinations
- Payment failure or insufficient USDC balance blocks the call

## How this service works

Business listings around a coordinate: name, category, address, phone, website, rating — lead lists for local outreach

## Output

A list of up to 50 business records, each containing business name, category, street address, phone number, website URL, and rating score — structured for lead lists and local outreach campaigns.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "location_coordinate"
 ],
 "properties": {
  "limit": {
   "type": "number",
   "description": "max 50, defaults to 10"
  },
  "query": {
   "type": "string",
   "description": "Business name contains …"
  },
  "categories": {
   "type": "array",
   "description": "Category slugs, e.g. [\"pizza_restaurant\"]"
  },
  "location_coordinate": {
   "type": "string",
   "description": "\"lat,lon,radiusKm\", e.g. \"48.137154,11.576124,10\""
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "description": "Business listings around a coordinate: name, category, address, phone, website, rating — lead lists for local outreach"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/local-business-listings-by-coordinate-174eb19a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent.connskill.com](https://www.zero.xyz/host/agent.connskill.com/llms.txt)
