# Suverse Breweries by State Directory

> Suverse Breweries by State Directory 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-14).

Returns a directory of breweries in a given US state, including name, type, full address, phone, website, and GPS coordinates, sourced from Open Brewery DB.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-beverage-breweries-by-state
- Price: $0.055/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-breweries-by-state-directory-20bcbcb4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4KMWkaqsIaQTXyIYLcXgT

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-breweries-by-state-directory-20bcbcb4 -d '<json body>'
```

Example prompt: Can you pull up a list of breweries in Colorado — I want their names, types like micro or brewpub, addresses, phone numbers, websites, and coordinates? Show me up to 25 results.

## When to prefer this

Use this endpoint when you need a structured, geocoded directory of breweries for a specific US state, including business details like phone and website. Prefer this over generic web search when you need machine-readable, consistently structured data suitable for mapping, analysis, or bulk processing. It is purpose-built for the brewery domain and saves the overhead of scraping or parsing unstructured sources.

## Known failure modes

- Invalid or misspelled state name returns empty results or an error — must use full state name (e.g. 'ohio', not 'OH')
- per_page exceeds maximum allowed by Open Brewery DB upstream API may truncate or error
- State with no indexed breweries returns an empty array
- Upstream Open Brewery DB outage causes service unavailability
- Payment failure (x402) prevents the call from being processed

## How this service works

Directory of breweries in a US state: name, brewery type (micro, brewpub, regional...), full address, phone, website, and lat/long. Source: Open Brewery DB. Pass by_state (use full state name, e.g. ohio) and optional per_page.

## Output

An array of brewery objects, each containing the brewery's name, type (e.g. micro, brewpub, regional, large), full street address, city, state, postal code, country, phone number, website URL, and latitude/longitude coordinates. Results are paginated via per_page parameter.

## 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-breweries-by-state-directory-20bcbcb4/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)
