# Strale Pricing Page Extractor

> Strale Pricing Page Extractor is a paid API for AI agents from api.strale.io, paid per call via x402, $0.324/call, status unknown (last checked 2026-09-14).

Extracts structured pricing information from a given pricing page URL

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/pricing-page-extract
- Price: $0.324/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-pricing-page-extractor-9a7c00bf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ot-VCDL8vltXMXk8C9CGn

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 strale-pricing-page-extractor-9a7c00bf
```

Example prompt: Can you pull the structured pricing data from this page — https://linear.app/pricing — and show me all the plans, prices, and what features each tier includes?

## When to prefer this

Choose this endpoint when you need to programmatically extract structured pricing data from any public pricing page URL without building custom scrapers. It is especially useful for competitive intelligence pipelines, automated pricing monitoring, or populating pricing comparison tools. Prefer it over generic web scrapers when you specifically need pricing-oriented structured output with an audit trail.

## Known failure modes

- Target URL is behind authentication or a paywall — returns error or empty extraction
- Pricing page uses heavy JavaScript rendering that cannot be parsed — incomplete or no data returned
- URL is malformed or unreachable — HTTP error or timeout
- Page has no recognizable pricing structure — low-confidence or empty output
- Rate limiting or bot protection on target domain blocks the request

## How this service works

Extract structured pricing data from any SaaS pricing page. Returns plan names, prices, features per plan, billing periods, trial/guarantee info.

## Output

Returns structured data extracted from the target pricing page, including plan names, prices (monthly/annual), feature lists per tier, billing options, and any usage limits or add-ons mentioned. Each call also returns a cryptographic audit record with chain hashing for traceability.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "Pricing page URL"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "plans": {
  "type": "array"
 },
 "pricing_model": {
  "type": "string"
 },
 "enterprise_cta": {
  "type": "boolean"
 },
 "free_trial_available": {
  "type": "boolean"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-pricing-page-extractor-9a7c00bf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
