# FetchDelta Pricing Snapshot

> FetchDelta Pricing Snapshot is a paid API for AI agents from fetchdelta.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Fetches and parses a public pricing page URL, returning clean markdown content, detected price mentions, and commercial signals.

## Facts

- Endpoint: GET https://fetchdelta.com/api/pricing-snapshot
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fetchdelta-pricing-snapshot-4f80c111
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZSQJ-bhZfn3Eo7w0J0Vqa

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 fetchdelta-pricing-snapshot-4f80c111
```

Example prompt: Can you pull the current pricing from https://stripe.com/pricing and tell me what plans they offer and how much each one costs?

## When to prefer this

Choose this endpoint when you need structured pricing data extracted from a known public URL — especially when you want price mentions and commercial signals parsed out automatically rather than receiving raw HTML. It's ideal for competitive pricing research, vendor cost verification, or building pricing comparison features where you already know the target URL. Prefer it over generic web scrapers when you specifically want pricing-focused extraction with markdown output and signal detection.

## Known failure modes

- Private, localhost, credentialed, or non-HTTP(S) URLs are rejected with an error
- Pages behind authentication walls or paywalls cannot be fetched
- Rate-limited or bot-protected pages may return incomplete or empty content
- Redirect loops or extremely slow pages may time out
- Pages with no detectable price mentions return empty priceMentions and commercialSignals arrays

## How this service works

Public page data and prepaid daily watches for AI agents. Pay per result with Base USDC over x402.

## Output

Returns a JSON object with: the original and final (post-redirect) URL, page title, fetch timestamp, up to 5 markdown-formatted content sources from the page, an array of detected price mention strings (e.g. '$99/month'), and an array of commercial signals (e.g. 'per month', 'annual'). The product field is set to 'pricing-snapshot'.

## 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",
       "description": "Absolute URL of a public HTTP(S) page to fetch. Use docs, changelogs, release notes, pricing pages, policy pages, or other public pages. Private, localhost, credentialed, and non-HTTP(S) URLs are rejected."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "source": {
   "url": "https://example.com/",
   "title": "Example title",
   "finalUrl": "https://example.com/",
   "fetchedAt": "2026-08-25T00:00:00.000Z"
  },
  "product": "pricing-snapshot",
  "sources": [
   {
    "markdown": "# Example pricing"
   }
  ],
  "maxSources": 5,
  "priceMentions": [
   "$99/month"
  ],
  "requestedSources": 1,
  "commercialSignals": [
   "per month"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fetchdelta-pricing-snapshot-4f80c111/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fetchdelta.com](https://www.zero.xyz/host/fetchdelta.com/llms.txt)
