# Neuroterminal Product Facts

> Neuroterminal Product Facts is a paid API for AI agents from api.neuroterminal.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Extracts structured product facts (name, price, availability, image) from any e-commerce product page URL

## Facts

- Endpoint: GET https://api.neuroterminal.xyz/v1/product-facts
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/neuroterminal-product-facts-68432cb0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RqTwcYiES7n4_sH78DKOj

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 neuroterminal-product-facts-68432cb0
```

Example prompt: Can you grab the product name, price, and availability from this page: https://www.example-shop.com/products/mens-cruiser-shadow-blue?

## When to prefer this

Choose this endpoint when you need to quickly extract structured product facts (price, availability, name, image) from a single e-commerce product page URL without building or maintaining your own scraper. It is ideal for price checks, catalog enrichment, availability monitoring, and competitive research. It works without any API key or account — just pay $0.01 USDC per call via x402. Prefer alternatives if you need to crawl entire sites, search for products across multiple retailers simultaneously, or require real-time inventory from a retailer's own API.

## Known failure modes

- Product page not found or URL returns 404 — found: false returned
- Page has no structured product data (no JSON-LD, OG tags, or schema.org markup) — found: false or incomplete product object
- Dynamic/JavaScript-rendered pages may not be fully parsed if browser rendering was not triggered
- Incorrect or malformed URL input — may result in error or empty response
- Price or availability data absent from page markup — fields may be null or missing

## How this service works

Paid HTTP endpoints for AI agents, settled in USDC on Base via the x402 protocol. No account, no API key — pay per call.

## Output

A JSON object indicating whether product facts were found, the source of the data (e.g. JSON-LD, meta tags), the number of products detected, and a product object containing name, image URL, price, currency, and availability status. Also includes flags for whether the URL was redirected and whether a browser renderer was used.

## 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",
       "description": "full product page URL"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "found": true,
  "schema": {
   "kind": "ld-product",
   "productCount": 1
  },
  "source": "json-ld+meta",
  "product": {
   "name": "Men's Cruiser - Shadow Blue (Natural White Sole)",
   "image": "https://...",
   "price": "105",
   "currency": "USD",
   "availability": "InStock"
  },
  "redirected": false,
  "renderedWithBrowser": false
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/neuroterminal-product-facts-68432cb0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.neuroterminal.xyz](https://www.zero.xyz/host/api.neuroterminal.xyz/llms.txt)
