# GoCreative Beer Lookup API

> GoCreative Beer Lookup API is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Looks up beer data by name or identifier, returning structured information about beers from official or curated sources.

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/lookup/beer/%7Barg%7D
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-beer-lookup-api-caf6e0c0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-9DLfDcUVVQ97Q3E22poL

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 gocreative-beer-lookup-api-caf6e0c0
```

Example prompt: Look up the beer 'Sierra Nevada Pale Ale' and give me its brewery, style, and ABV.

## When to prefer this

Use this endpoint when you need quick, pay-per-call beer data without requiring an API key or signup. Prefer this over manual web scraping or dedicated beer APIs when you need occasional beer lookups with micro-payment billing and no subscription overhead.

## Known failure modes

- Beer not found in the database — returns 404 or empty result
- Invalid or malformed beer name/identifier — may return error or no match
- Payment failure via x402 USDC on Base — call not processed
- Rate limiting or service unavailability — returns 5xx error
- Ambiguous beer name matching multiple records — may return first match or require more specific input

## How this service works

Keyless, pay-per-call compliance &amp; regulated-data API for AI agents — OFAC wallet + sanctions/PEP + KYB screening, SEC filings, FRED economics, FDA recalls, federal awards, plus continuous monitoring. USDC on Base/Solana via x402, native MCP. No API key, no signup.

## Output

Returns structured data about the requested beer, including details such as name, brewery, beer style, alcohol by volume (ABV), and descriptive information sourced from official or curated beer databases.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "endpoint argument"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gocreative-beer-lookup-api-caf6e0c0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.gocreativeai.com](https://www.zero.xyz/host/api.gocreativeai.com/llms.txt)
