# Apollo Scrape — Residential Proxy URL Fetcher

> Apollo Scrape — Residential Proxy URL Fetcher is a paid API for AI agents from apolloai.team, paid per call via x402, $0.02/call, status down (last checked 2026-09-15).

Fetches any URL through residential proxies and returns extracted clean text content with metadata

## Facts

- Endpoint: GET https://apolloai.team/api/scrape
- Price: $0.02/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/apollo-scrape-residential-proxy-url-fetcher-6eb0ce9a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wyQaoGALUv7UXdPziAxmA

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 apollo-scrape-residential-proxy-url-fetcher-6eb0ce9a
```

Example prompt: Fetch the content of https://techcrunch.com/latest using a residential proxy in Germany and give me the clean extracted text.

## When to prefer this

Use this endpoint when you need to fetch web page content through residential proxies to avoid IP blocks or access geo-restricted content, especially when clean text extraction is needed. Prefer this over direct HTTP fetches when target sites block datacenter IPs, or when you need content from a specific geographic location. Differs from a bare proxy relay in that it also extracts and cleans the page text automatically.

## Known failure modes

- Target URL is unreachable or returns non-200 status — status_code field reflects the upstream HTTP error
- Invalid or unsupported country code — may fall back to default country or return an error
- URL is malformed or missing — returns 400-level error
- Target site actively blocks all proxy traffic — may return empty content or 403
- Timeout on slow or large pages — elapsed_ms may be high and content may be truncated

## How this service works

Scraping as a service: fetch any URL through residential proxies with content extraction.

## Output

A JSON object containing the fetched page's URL, title, extracted clean text content, HTTP status code, proxy country used, elapsed time in milliseconds, fetch method used, and content length in bytes.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "URL to scrape"
      },
      "country": {
       "type": "string",
       "description": "Proxy exit country code"
      },
      "extract": {
       "type": "string",
       "description": "Extract clean text (true/false, default true)"
      },
      "include_links": {
       "type": "string",
       "description": "Include extracted links (true/false)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "url": "https://example.com",
  "title": "Example Domain",
  "content": "This domain is for use in illustrative examples...",
  "elapsed_ms": 1200,
  "method_used": "proxy",
  "status_code": 200,
  "proxy_country": "US",
  "content_length": 1256
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apollo-scrape-residential-proxy-url-fetcher-6eb0ce9a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from apolloai.team](https://www.zero.xyz/host/apolloai.team/llms.txt)
