# Agent Product Validator

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

Scores whether a public product page contains enough reliable, structured data for commerce agents to act on

## Facts

- Endpoint: GET https://agent-product-normalizer.vercel.app/api/v1/validate
- Price: $0.02/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-validator-240b2757
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xCZljQqPXbXHNvoBjt07g

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-validator-240b2757
```

Example prompt: Before my shopping agent tries to buy from this listing, can you check if the product page at https://example.com/product/widget-pro has enough reliable data — pricing, availability, and specs — for a commerce agent to work with?

## When to prefer this

Use this endpoint when an AI commerce agent needs to gate its actions on data quality — specifically before attempting to parse, compare, or purchase from a product page. Prefer this over generic web scrapers or content validators when you need a commerce-specific reliability score rather than raw extracted data. Pairs naturally with Agent Offer Comparator (to validate before comparing) and Agent Missing Field Checker (to confirm fields before checkout).

## Known failure modes

- URL is not publicly accessible or returns a non-200 HTTP status
- Page is behind a login wall or CAPTCHA, preventing data extraction
- Product page has no recognizable structured product data (not an e-commerce page)
- URL points to a non-product page such as a homepage or category listing
- Malformed or non-HTTP/HTTPS URL provided
- Page loads JavaScript-rendered content that cannot be crawled
- Payment of 0.02 USDC not completed, returning 402

## How this service works

Score whether a public product page contains enough reliable data for commerce agents

## Output

A score and assessment indicating whether the product page at the given URL contains sufficient reliable, structured data (e.g. pricing, availability, product identifiers, descriptions) for a commerce agent to act on, along with signals about which data fields are present, missing, or unreliable.

## 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-validator-240b2757/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)
