# X402 Cloud Company Pricing Extractor

> X402 Cloud Company Pricing Extractor is a paid API for AI agents from api.x402cloud.space, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-15).

Extracts structured pricing plans from a company's website given its domain, returning plan names, prices, features, and billing periods with a confidence score.

## Facts

- Endpoint: POST https://api.x402cloud.space/v1/company/extract-pricing
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-cloud-company-pricing-extractor-aa0a3367
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-atVkrG77j31GT_7wfo_7

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 x402-cloud-company-pricing-extractor-aa0a3367 -d '<json body>'
```

Example prompt: Can you pull the pricing plans from notion.so for me — I want to know the plan names, prices, features, and billing periods in USD? Use the pricing extractor.

## When to prefer this

Use this endpoint when you need structured, machine-readable pricing data from a company's public website without manual browsing. It is ideal for competitive intelligence pipelines, SaaS pricing comparison tools, RAG systems that need current pricing context, or any agent workflow that must programmatically determine what a company charges. Prefer it over general web scrapers when you specifically need normalized plan/price/feature output with a confidence signal.

## Known failure modes

- Domain has no discoverable pricing page — returns empty plans array with low confidence score
- Pricing page is behind a login or paywall — extraction fails or returns partial data
- Dynamically rendered pricing (JavaScript-heavy) may not be fully captured
- Invalid or unreachable domain returns an error or zero-confidence result
- Currency conversion may be unavailable for exotic currencies

## How this service works

X402 Cloud AI Inference Endpoints is an agent-ready x402 API provider for Gemini, image, audio, video, realtime, and specialized AI inference workflows. We expose pay-per-call USDC endpoints designed for autonomous AI agents, application backends, trading bots, creative automation, and RAG systems with some of the lowest x402 AI inference prices available in the market.

## Output

A JSON object containing an array of pricing plans (each with name, price, features list, and billing period), a confidence score between 0 and 1 indicating extraction reliability, and the discovered pricing URL used as the source.

## Example request

```json
{
 "domain": "stripe.com",
 "currency": "USD",
 "known_pricing_url": null
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "plans": [
   {
    "name": "Pro",
    "price": "$19",
    "features": [
     "Feature A"
    ],
    "billing_period": "month"
   }
  ],
  "confidence": 0.88,
  "pricing_url": "https://example.com/pricing"
 },
 "outputSchema": {
  "type": "object",
  "$defs": {
   "PricingPlan": {
    "type": "object",
    "title": "PricingPlan",
    "required": [
     "name"
    ],
    "properties": {
     "name": {
      "type": "string",
      "title": "Name"
     },
     "price": {
      "anyOf": [
       {
        "type": "string"
       },
       {
        "type": "null"
       }
      ],
      "title": "Price",
      "default": null
     },
     "features": {
      "type": "array",
      "items": {
       "type": "string"
      },
      "title": "Features"
     },
     "billing_period": {
      "anyOf": [
       {
        "type": "string"
       },
       {
        "type": "null"
       }
      ],
      "title": "Billing Period",
      "default": null
     }
    }
   }
  },
  "title": "PricingPageExtractorOutput",
  "properties": {
   "plans": {
    "type": "array",
    "items": {
     "$ref": "#/$defs/PricingPlan"
    },
    "title": "Plans"
   },
   "confidence": {
    "type": "number",
    "title": "Confidence",
    "default": 0,
    "maximum": 1,
    "minimum": 0
   },
   "pricing_url": {
    "anyOf": [
     {
      "type": "string"
     },
     {
      "type": "null"
     }
    ],
    "title": "Pricing Url",
    "default": null
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-cloud-company-pricing-extractor-aa0a3367/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402cloud.space](https://www.zero.xyz/host/api.x402cloud.space/llms.txt)
