# Gapup Competitor Pricing Scrape

> Gapup Competitor Pricing Scrape is a paid API for AI agents from mcp.gapup.io, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Scrapes and extracts pricing information from a competitor's website or pricing page URL

## Facts

- Endpoint: POST https://mcp.gapup.io/api/v1/call/competitor_pricing_scrape
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gapup-competitor-pricing-scrape-c893b8f3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BfxlwgtCADw5MbjhKY33T

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 gapup-competitor-pricing-scrape-c893b8f3 -d '<json body>'
```

Example prompt: Can you scrape the pricing page at https://notion.so/pricing and pull out all the plan names, prices, and features so I can compare them to ours?

## When to prefer this

Use this endpoint when you need to programmatically extract pricing information from a specific competitor's website or pricing page. Prefer this over manual research when you need structured, machine-readable pricing data for competitive analysis, pricing benchmarking, or monitoring competitor price changes. Best suited for SaaS pricing pages or any publicly accessible pricing URL.

## Known failure modes

- URL is inaccessible or behind a login wall — empty or partial result returned
- Competitor page uses dynamic JavaScript rendering that prevents scraping — incomplete data
- Invalid or malformed URL provided — validation error
- Rate limiting or bot protection on target site — scrape fails or returns incomplete data
- Async job_id polling returns not-yet-ready status if result is slow

## How this service works

REST gateway for the Gapup MCP catalogue — 271 AI tools accessible via standard HTTP. Authentication via Authorization: Bearer <api_key>. Native MCP transport available at /mcp.

## Output

A JSON object containing extracted pricing data from the specified competitor URL or domain, including plan names, prices, tiers, and any other pricing-related information found on the page. May be returned directly or via a job_id for async polling if the async flag is set.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "description": "Competitor URL or domain (e.g. 'https://notion.so/pricing', 'notion.so', 'https://www.example.com'). For best results, provide the direct pricing page URL."
  },
  "async": {
   "type": "boolean",
   "description": "If true, returns a job_id immediately (<200ms) instead of waiting for the result. Poll the result with job_result(job_id). Use for slow tools to avoid client timeouts."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tool": "competitor_pricing_scrape",
  "result": {},
  "source": "rest-api"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gapup-competitor-pricing-scrape-c893b8f3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mcp.gapup.io](https://www.zero.xyz/host/mcp.gapup.io/llms.txt)
