# BizIntel BoardGameGeek Product Lookup

> BizIntel BoardGameGeek Product Lookup is a paid API for AI agents from bizintel-api.hahavoid0.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Looks up a board game by its BoardGameGeek ID and returns rating and metadata via the BGG data source

## Facts

- Endpoint: POST https://bizintel-api.hahavoid0.workers.dev/product/boardgamegeek
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bizintel-boardgamegeek-product-lookup-f5604532
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-_YAWZxro_A1Vi1SzJEBp

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 bizintel-boardgamegeek-product-lookup-f5604532 -d '<json body>'
```

Example prompt: What's the BoardGameGeek community rating for the game with BGG ID 174430 — is it well received?

## When to prefer this

Use this endpoint when you need structured board game rating and existence data sourced from BoardGameGeek, especially within an agentic workflow that pays per call via x402 USDC on Base and requires no API key. Prefer this over direct BGG scraping when you need clean JSON output with confidence scores and data freshness timestamps.

## Known failure modes

- Game ID not found on BGG — found: false returned
- Invalid or malformed game ID input — error or unsupported response
- BGG data temporarily unavailable — service timeout or empty result
- Payment failure via x402/USDC — call not executed
- Low confidence result if BGG data is sparse or contested

## How this service works

Resolves board game search results, complexity weight, and rating rankings from BGG XML API2.

## Output

Returns a JSON object with the BGG game ID, a found boolean, the community rating score (e.g. 8.6 out of 10), a confidence level (e.g. 'high'), the data freshness date (e.g. '2026-06'), any warnings, and a disclaimer. Confidence and rating help the agent assess data reliability.

## 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": {
     "type": "object",
     "required": [
      "title"
     ],
     "properties": {
      "title": {
       "type": "string",
       "description": "Board game title name (e.g. Catan)"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "id": 174430,
   "found": true,
   "rating": 8.6
  },
  "warnings": [],
  "supported": true,
  "confidence": "high",
  "data_as_of": "2026-06",
  "disclaimer": "Informational support only. Not legal, tax, medical, veterinary, or financial advice. Verify with the cited official source or a qualified professional before acting."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bizintel-boardgamegeek-product-lookup-f5604532/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bizintel-api.hahavoid0.workers.dev](https://www.zero.xyz/host/bizintel-api.hahavoid0.workers.dev/llms.txt)
