# Orthogonal OpenMart Local Business Search

> Orthogonal OpenMart Local Business Search is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Search local businesses using natural language queries with 22+ filter categories including geo, ratings, reviews, ownership type, and tags.

## Facts

- Endpoint: POST https://x402.orthogonal.com/openmart/api/v1/search
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orthogonal-openmart-local-business-search-5bf8f516
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uCPJr1baM2n6_doA93M2Y

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 orthogonal-openmart-local-business-search-5bf8f516 -d '<json body>'
```

Example prompt: Find me highly rated woman-owned coffee shops in Austin, Texas with at least 50 reviews and a minimum rating of 4.5 — return the top 10 results.

## When to prefer this

Choose this endpoint when you need to discover local businesses using natural language queries combined with structured filters like minimum rating, review count, ownership type, or geo bounding — especially when 22+ filter categories are needed. Prefer over generic web search when you want structured, filterable business data rather than unstructured web results.

## Known failure modes

- No results returned for overly specific filter combinations (high min_rating + high min_reviews in a small area)
- Geo object malformed or missing causing location-unanchored results
- Invalid ownership_type value returning empty or error response
- Page size too large causing timeout or truncated response
- Query too ambiguous returning irrelevant business categories

## How this service works

Search local businesses by natural language query with 22+ filter categories.

## Output

Returns a list of local business records matching the query and filters, including business names, ratings, review counts, location data, ownership type classifications, and relevant tags.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "geo": {
   "type": "object"
  },
  "tags": {
   "type": "array"
  },
  "query": {
   "type": "string"
  },
  "page_size": {
   "type": "integer"
  },
  "min_rating": {
   "type": "number"
  },
  "min_reviews": {
   "type": "integer"
  },
  "ownership_type": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orthogonal-openmart-local-business-search-5bf8f516/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
