# OneShotAgent Local Business Resolver

> OneShotAgent Local Business Resolver is a paid API for AI agents from win.oneshotagent.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Resolves a local business name and address to its website domain, phone number, category, operating status, and match confidence score

## Facts

- Endpoint: POST https://win.oneshotagent.com/v1/tools/local/resolve
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oneshotagent-local-business-resolver-74820cbc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sOKyL7vIk1A7V5q4I-3Jx

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 oneshotagent-local-business-resolver-74820cbc -d '<json body>'
```

Example prompt: Can you look up the official website, phone number, and whether it's still open for a business called 'Morning Bloom Coffee' at 142 Oak Street in Austin, Texas 78701?

## When to prefer this

Use this endpoint when you need to enrich or verify a local business record with structured data like website domain, phone, category, and operating status, and you have at least a business name plus partial location data. Prefer it over generic web search when you need structured, confidence-scored output rather than raw search results. It is especially useful in CRM enrichment, lead qualification, vendor verification, or any workflow where you need to programmatically resolve a business identity from partial information.

## Known failure modes

- Low confidence score returned when business name is ambiguous or address is incomplete
- No match found if the business does not exist in the underlying data source
- Stale operating status if the business recently opened or closed
- Phone number or website may be missing for businesses with thin online presence
- Incorrect match if multiple businesses share the same name in the same city

## How this service works

Resolve a local business name + address to its website domain, phone, category, and operating status with a match confidence

## Output

Returns the resolved business's website domain, phone number, business category, operating status (e.g. open/closed/uncertain), and a match confidence score indicating how reliably the input was matched to the business record.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "city": {
   "type": "string",
   "description": "City"
  },
  "name": {
   "type": "string",
   "description": "Business name"
  },
  "phone": {
   "type": "string",
   "description": "Phone number (strong match signal)"
  },
  "region": {
   "type": "string",
   "description": "State / province"
  },
  "address": {
   "type": "string",
   "description": "Street address"
  },
  "postal_code": {
   "type": "string",
   "description": "Postal code"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oneshotagent-local-business-resolver-74820cbc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from win.oneshotagent.com](https://www.zero.xyz/host/win.oneshotagent.com/llms.txt)
