# Price Extract

> Price Extract is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Extracts all price mentions from a web page, including currency amounts from text and structured metadata tags (schema.org/Open Graph), with currency codes, numeric values, min/max ranges, and product price hints.

## Facts

- Endpoint: GET https://intel.rallylive.ca/site/prices
- 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/price-extract-ba4c9755
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7eHoc0KGPmOtuWLBZN3Ig

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 price-extract-ba4c9755
```

Example prompt: Can you pull all the prices from this product page — I need the currency, numeric values, and any min/max ranges listed: https://www.example.com/product/widget-pro

## When to prefer this

Choose this endpoint when you need to extract price data from a specific web page without building your own scraper — especially useful for e-commerce pages, deal sites, or any page with schema.org or Open Graph price markup. It covers both structured metadata and free-text currency mentions in a single call, making it ideal for price monitoring workflows and catalogue aggregation at low cost ($0.01/page).

## Known failure modes

- Page returns non-200 status — no price data extracted
- Page has no detectable price content — empty results array returned
- Page is behind a login wall or paywall — extraction fails or returns partial data
- URL is malformed or unreachable — request error returned
- Page uses heavily JavaScript-rendered prices that aren't in the static HTML or structured tags — prices may be missed

## How this service works

Price extraction from a page: every currency amount in the text and in schema.org/Open Graph price tags, with currency, numeric value, min/max, and product price hints. Price monitoring and catalogue scraping. $0.01 per page.

## Output

A JSON object containing all detected price mentions on the page: each entry includes the numeric value, currency code, raw text snippet, and flags for min/max range bounds and product price hints extracted from both visible text and structured metadata (schema.org, Open Graph price tags).

## 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",
     "properties": {}
    }
   },
   "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/price-extract-ba4c9755/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
