# Italian Wine Regions & Denominations API

> Italian Wine Regions & Denominations API is a paid API for AI agents from api.wines.bet, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns a list of Italian wine regions and their associated denomination (DOC/DOCG/IGT) data.

## Facts

- Endpoint: GET https://api.wines.bet/v1/regions
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/italian-wine-regions-denominations-api-982217b6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IMvR-gfMLTbIcXAn0DDZa

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 italian-wine-regions-denominations-api-982217b6
```

Example prompt: Can you pull up the full list of Italian wine regions and their denominations in English so I can see all the DOC, DOCG, and IGT classifications?

## When to prefer this

Choose this endpoint when you need authoritative reference data on Italian wine regions and their official denomination classifications (DOC/DOCG/IGT). Ideal for populating lookup tables, enriching wine product listings, or providing regional context for Italian wines. Prefer over generic web search when structured, machine-readable denomination data is required.

## Known failure modes

- Invalid 'lang' value (not 'en' or 'it') may cause a validation error
- Service unavailable if the provider backend is down
- Empty or partial results if denomination data is incomplete for certain regions

## How this service works

Standardized Italian wine regions, denominations (DOCG/DOC), and geographic hierarchy for terroir mapping and regional wine indices.

## Output

A structured list of Italian wine regions along with their associated denominations (e.g. DOC, DOCG, IGT), returned in either English or Italian depending on the 'lang' 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "lang": {
       "enum": [
        "en",
        "it"
       ],
       "type": "string",
       "description": "Response language (default: en)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "total": 20,
   "regions": [
    {
     "id": "6645a1b2c3d4e5f6a7b8c001",
     "name": "Piedmont",
     "slug": "piemonte",
     "color": "#7b1e3a",
     "winesCount": 184
    },
    {
     "id": "6645a1b2c3d4e5f6a7b8c002",
     "name": "Tuscany",
     "slug": "toscana",
     "color": "#990000",
     "winesCount": 247
    }
   ]
  },
  "success": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/italian-wine-regions-denominations-api-982217b6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.wines.bet](https://www.zero.xyz/host/api.wines.bet/llms.txt)
