# LION x402 POI Business Search

> LION x402 POI Business Search is a paid API for AI agents from lion-x402-bible.lionmaster-operations.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns attested point-of-interest and business search results as JSON, paid per-call via x402 micropayment in USDC on Base.

## Facts

- Endpoint: GET https://lion-x402-bible.lionmaster-operations.workers.dev/api/x402/poi-business-search-json
- 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/lion-x402-poi-business-search-d5117900
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4GIv470JPZVqxE1T720bn

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 lion-x402-poi-business-search-d5117900
```

Example prompt: Search for coffee shops near downtown Austin and give me the results as structured business data — I need the attested POI listing JSON so I can use it in my app.

## When to prefer this

Choose this endpoint when you need attested, structured business or point-of-interest data for autonomous agents without requiring API key registration, and you are already operating within the x402 micropayment ecosystem on Base. It is well-suited for agents that need to pay-per-query for local business lookups without long-term API contracts.

## Known failure modes

- Payment not completed — returns HTTP 402 if USDC micropayment via x402 is not provided
- Business or POI not found — resolved field returns false
- Invalid or missing search query — may return empty or error response
- Network/worker error — Cloudflare Worker may return 5xx
- Rate limiting or quota issues if query volume is high

## How this service works

Keyless attested data for autonomous agents. USDC on Base via x402. Official @x402/* middleware.

## Output

A JSON object containing an asset_id field (LION), a resolved boolean indicating whether the business/POI was found, and associated business listing data for the queried point of interest.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string"
      },
      "lat": {
       "type": "number"
      },
      "lon": {
       "type": "number"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "asset_id": "LION",
  "resolved": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lion-x402-poi-business-search-d5117900/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from lion-x402-bible.lionmaster-operations.workers.dev](https://www.zero.xyz/host/lion-x402-bible.lionmaster-operations.workers.dev/llms.txt)
