# BizIntel API – Amazon Product Price Lookup

> BizIntel API – Amazon Product Price 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-14).

Fetches the current Amazon price for a product given its identifier, returning a price value and confidence score

## Facts

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

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-api-amazon-product-price-lookup-ec1c88f7 -d '<json body>'
```

Example prompt: What is the current Amazon price for the product with ASIN B09G9FPHY6? I want to know if it's under $50.

## When to prefer this

Use this endpoint when you need a quick, pay-per-call Amazon price lookup without managing API keys or subscriptions. Ideal for AI agents performing price comparisons, budget checks, or product research where real-time Amazon pricing is needed. Prefer this over scraping or manual lookup when integrating into automated workflows that already use x402 USDC micropayments on Base.

## Known failure modes

- Product ASIN not found on Amazon returns found:false
- Unsupported product category returns supported:false
- Invalid or malformed ASIN returns error response
- Price temporarily unavailable may return low confidence or empty price
- Payment failure via x402/USDC results in 402 status before data is returned

## How this service works

Extracts basic details, prices, and star ratings from an Amazon ASIN or URL.

## Output

A JSON object containing: 'found' boolean indicating if the product was located, 'price' as a numeric value in USD, 'supported' boolean, a 'confidence' level (e.g. 'high'), 'data_as_of' indicating the data freshness month, and a disclaimer noting the data is informational only. Returns warnings array for any caveats.

## 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": [
      "asin_or_url"
     ],
     "properties": {
      "asin_or_url": {
       "type": "string",
       "description": "Amazon ASIN code or product listing URL"
      }
     }
    },
    "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": {
   "found": true,
   "price": 999
  },
  "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-api-amazon-product-price-lookup-ec1c88f7/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)
