# BizIntel API – Yelp Business Lookup

> BizIntel API – Yelp Business Lookup is a paid API for AI agents from bizintel-api.hahavoid0.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Looks up a business's Yelp rating and review count by name and location

## Facts

- Endpoint: POST https://bizintel-api.hahavoid0.workers.dev/company/yelp
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bizintel-api-yelp-business-lookup-1dea32cb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fD5fdMpwaiKY8A6jAL2px

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 bizintel-api-yelp-business-lookup-1dea32cb -d '<json body>'
```

Example prompt: What's the Yelp rating and number of reviews for Joe's Crab Shack in Houston, Texas?

## When to prefer this

Use this endpoint when you need quick, structured Yelp reputation data (rating + review count) for a named business in a specific city without needing a Yelp API key or account. It's ideal for AI agents doing local business vetting, vendor research, or competitive benchmarking at $0.03 per call via x402 USDC — far simpler than setting up a full Yelp Fusion integration.

## Known failure modes

- Business not found on Yelp returns low confidence or unsupported flag
- Ambiguous business name with multiple matches may reduce confidence
- Location too vague or misspelled may return no results
- Rate limiting or payment failure returns 402 or error response
- Data may be stale relative to current Yelp listings (data_as_of indicates last refresh)

## How this service works

Fetches local retail business ratings, reviews, and address from Yelp.

## Output

Returns a JSON object with the business's Yelp star rating (e.g. 4.5), total review count, a confidence level (e.g. 'high'), a data_as_of date indicating freshness, a supported flag, any warnings, and a disclaimer noting the data is informational only.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "name",
      "location"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "Business name"
      },
      "location": {
       "type": "string",
       "description": "City and state/country"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "rating": 4.5,
   "review_count": 320
  },
  "warnings": [],
  "supported": true,
  "confidence": "high",
  "data_as_of": "2026-06",
  "disclaimer": "Informational support only. Not legal, tax, medical, veterinary, or financial advice. Verify with the cited official source or a qualified professional before acting."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bizintel-api-yelp-business-lookup-1dea32cb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bizintel-api.hahavoid0.workers.dev](https://www.zero.xyz/host/bizintel-api.hahavoid0.workers.dev/llms.txt)
