# x402-local Local Pack Rank & Opening Hours

> x402-local Local Pack Rank & Opening Hours is a paid API for AI agents from x402-local.husquatch.workers.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns Google local-pack rank snapshots and OSM opening hours for local businesses matching a keyword and location query.

## Facts

- Endpoint: GET https://x402-local.husquatch.workers.dev/rank/%7Bkeyword%7D
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-local-local-pack-rank-opening-hours-834a187e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Tc6LrD5fab5VyrytGaORq

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 x402-local-local-pack-rank-opening-hours-834a187e
```

Example prompt: Pull the local-pack rankings for 'coffee shop' in Portland, Oregon, United States and show me the top 5 results with their position, rating, and address.

## When to prefer this

Choose this endpoint when you need current local-pack ranking data (position, rating, reviews) for a specific keyword and geographic location, especially for local SEO monitoring, competitor benchmarking, or market research. It is particularly valuable for agents that need pay-per-call, low-overhead local search intelligence without managing a full SEO platform subscription. Prefer it over general web search APIs when structured, ranked business listing data with OSM opening hours is required.

## Known failure modes

- Missing required 'location' parameter returns a validation error
- Unsupported or ambiguous location string may return empty results or error
- Keyword with no local-pack results returns an empty data array
- Network or upstream scraping timeout may return a 5xx error
- Exceeding rate limits may result in payment-gated 402 or throttling responses

## How this service works

Pay-per-call local business data for AI agents: local-pack rank snapshots and OSM opening hours.

## Output

A JSON array of local business listings, each containing the business name, its local-pack position (integer rank), star rating, total review count, and address. A metadata object is also returned. Results reflect a real-time snapshot of the Google local pack for the queried keyword and location.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "location"
 ],
 "properties": {
  "limit": {
   "type": "integer"
  },
  "location": {
   "type": "string",
   "description": "Location as \"City,Region,Country\", e.g. \"Springfield,Missouri,United States\""
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "data"
 ],
 "properties": {
  "data": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "name": {
      "type": "string"
     },
     "rating": {
      "type": [
       "number",
       "null"
      ]
     },
     "address": {
      "type": [
       "string",
       "null"
      ]
     },
     "reviews": {
      "type": [
       "integer",
       "null"
      ]
     },
     "position": {
      "type": "integer"
     }
    }
   }
  },
  "_meta": {
   "type": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-local-local-pack-rank-opening-hours-834a187e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-local.husquatch.workers.dev](https://www.zero.xyz/host/x402-local.husquatch.workers.dev/llms.txt)
