# Suverse Brewery Search

> Suverse Brewery Search is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.055/call, status unknown (last checked 2026-09-16).

Search breweries by name using free-text query and retrieve type, address, contact details, and GPS coordinates for each result, powered by Open Brewery DB.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-beverage-brewery-search
- Price: $0.055/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-brewery-search-6494f40d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__yi47dHVzj0b1eRQZMoBQ

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 suverse-brewery-search-6494f40d -d '<json body>'
```

Example prompt: Can you find me the address, phone number, and GPS coordinates for a brewery called 'Sierra Nevada'?

## When to prefer this

Choose this endpoint when you need to find brewery details (address, contact, GPS) by searching a name or partial name, especially when powered by Open Brewery DB data. Prefer this over generic search engines when you want structured, machine-readable brewery data with coordinates suitable for routing or enrichment workflows.

## Known failure modes

- No results returned when the query string doesn't match any brewery name in Open Brewery DB
- Ambiguous results when a common or partial name matches many breweries
- Missing fields (e.g. no phone or coordinates) when the source database lacks data for a particular brewery
- Payment failure if USDC balance is insufficient for the $0.055 per-call fee
- Request error if the 'q' param is omitted or empty

## How this service works

Search breweries by free-text query (matches name) and get back type, address, contact, and lat/long for each hit. Source: Open Brewery DB. Pass a query string in the q param.

## Output

Returns a list of matching breweries, each containing the brewery name, type (micro, nano, regional, brewpub, etc.), full street address, city, state, postal code, country, phone number, website URL, and latitude/longitude coordinates.

## 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": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suverse-brewery-search-6494f40d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
