# Agent Product Normalizer

> Agent Product Normalizer is a paid API for AI agents from agent-product-normalizer.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-18).

Fetches a public product page URL and normalizes it into structured, agent-ready commerce JSON

## Facts

- Endpoint: GET https://agent-product-normalizer.vercel.app/api/v1/normalize
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-18
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-product-normalizer-78660046
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_H2ieXbElXgHz6QucSPA1C

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 agent-product-normalizer-78660046
```

Example prompt: Can you normalize this product page into structured commerce JSON so I can compare it with other listings? Here's the URL: https://www.amazon.com/dp/B09XYZ1234

## When to prefer this

Use this endpoint when an agent needs to programmatically extract and normalize product data from a public e-commerce URL into a consistent structured format, particularly before price comparisons, catalog ingestion, or purchase decisions. Prefer this over manual scraping or generic HTML extractors when you need commerce-specific fields (price, currency, availability) in a standardized schema ready for downstream agent consumption.

## Known failure modes

- URL is not accessible or returns a non-200 HTTP status
- Page requires JavaScript rendering that cannot be fetched server-side
- Product page is behind a login or paywall
- URL points to a non-product page (e.g. homepage, category page)
- Product data is dynamically loaded and not present in raw HTML
- Rate limiting or bot protection blocks the fetch
- Malformed or invalid URL provided
- Page structure is too unusual to extract reliable structured data

## How this service works

Normalize a public product page into agent-ready commerce JSON

## Output

A structured JSON object containing normalized product data extracted from the given product page URL, including fields such as product name, price, currency, availability/stock status, description, images, and other commerce-relevant attributes in a consistent agent-ready schema.

## 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",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "format": "uri",
       "maxLength": 2048,
       "description": "Public HTTP(S) product page URL"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-product-normalizer-78660046/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent-product-normalizer.vercel.app](https://www.zero.xyz/host/agent-product-normalizer.vercel.app/llms.txt)
