# Luxe Oracle - Hermès Inventory Monitor

> Luxe Oracle - Hermès Inventory Monitor is a paid API for AI agents from api.luxe-oracle.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns real-time inventory availability data for a specific Hermès product model in a given region, paid per-query via x402 micropayment on Base.

## Facts

- Endpoint: GET https://api.luxe-oracle.com/api/v1/monitor/%7Bregion%7D/%7Bbrand%7D/%7Bmodel%7D
- 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/luxe-oracle-herm-s-inventory-monitor-9021fcf4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XBrCNvA5Zp6AewPFbpwYH

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 luxe-oracle-herm-s-inventory-monitor-9021fcf4
```

Example prompt: Check if the Hermès product H086962CK0G is currently in stock in Japan right now.

## When to prefer this

Use this endpoint when you need real-time, per-query Hermès inventory data in specific regional markets (tw, sg, jp, uk, us, ca) without committing to API keys or subscriptions. Ideal for AI agents that need on-demand luxury inventory checks with micropayment-based access via x402 on Base. Best when you already have a product model ID from the /api/v1/inventory endpoint and want to check live stock status for a specific region.

## Known failure modes

- Invalid region code returns 422 or 400 error — only tw, sg, jp, uk, us, ca are accepted
- Invalid or unknown model ID returns 404 not found
- Payment failure via x402 returns 402 Payment Required if USDC balance is insufficient
- Brand value other than 'hermes' is not accepted by current enum
- Network timeout or upstream data unavailability returns 503
- Malformed path parameters return 400 bad request

## How this service works

Real-time Hermès inventory oracle for AI agents. Pay $0.001 USDC per query via x402 on Base. No API keys, no subscriptions — machine-native pricing.

## Output

Returns real-time inventory/availability status for the specified Hermès product model in the requested region. The agent receives current stock information indicating whether the item is available.

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "region",
    "brand",
    "model",
    "method"
   ],
   "properties": {
    "brand": {
     "enum": [
      "hermes"
     ],
     "type": "string",
     "description": "Brand name"
    },
    "model": {
     "type": "string",
     "description": "Product ID from /api/v1/inventory (e.g. H086962CK0G)"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "region": {
     "enum": [
      "tw",
      "sg",
      "jp",
      "uk"
     ],
     "type": "string",
     "description": "Region code"
    },
    "pathParams": {
     "type": "object"
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "brand": {
     "type": "string"
    },
    "model": {
     "type": "string"
    },
    "region": {
     "type": "string"
    },
    "status": {
     "enum": [
      "ok",
      "unsupported",
      "unavailable"
     ],
     "type": "string"
    },
    "in_stock": {
     "type": "boolean"
    },
    "metadata": {
     "type": "object",
     "additionalProperties": true
    },
    "last_update": {
     "type": "string",
     "format": "date-time"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/luxe-oracle-herm-s-inventory-monitor-9021fcf4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.luxe-oracle.com](https://www.zero.xyz/host/api.luxe-oracle.com/llms.txt)
