# Pricing Page Extractor

> Pricing Page Extractor is a paid API for AI agents from api.delx.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Extracts pricing signals including plans, trial offers, sales CTAs, and conversion routes from a given pricing page URL.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/pricing-page-extract
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-delx-ai-61a0f50e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_d0WDdSxXeky9jx0EUzhwy

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 api-delx-ai-61a0f50e -d '<json body>'
```

Example prompt: Pull the pricing plans, trial offers, and any sales CTAs from https://www.example.com/pricing — I want to know what tiers they offer, whether there's a free trial, and how they push visitors to convert.

## When to prefer this

Use this endpoint when you need to quickly extract structured pricing intelligence from a URL without manually reading the page. Ideal for competitive research, sales enablement, or monitoring competitor pricing changes. Prefer this over generic web scraping when the goal is specifically to identify pricing plans, trial offers, and conversion CTAs from a pricing-focused page.

## Known failure modes

- URL is not a pricing page — returns empty or low-signal results
- Target page is behind authentication or a paywall — extraction fails or returns partial data
- Page uses heavy JavaScript rendering that blocks extraction — incomplete results
- Invalid or unreachable URL — returns an error response
- Rate limiting or bot protection on target page — request blocked

## How this service works

Extract pricing signals like plans, trials, sales CTAs, and conversion routes from a pricing page.

## Output

A structured breakdown of the pricing page including identified plans and tiers, trial/freemium offers, sales call-to-action elements, and the conversion routes available to visitors.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string"
  },
  "timeout": {
   "type": "integer",
   "maximum": 15,
   "minimum": 1
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "title": "Pricing",
   "form_count": 1,
   "pricing_signals": {
    "enterprise": true,
    "free_trial": true,
    "usage_based": true,
    "contact_sales": false
   }
  },
  "tool_name": "util_pricing_page_extract"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-delx-ai-61a0f50e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.delx.ai](https://www.zero.xyz/host/api.delx.ai/llms.txt)
