# GoCreative Prism Web Scraper

> GoCreative Prism Web Scraper is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Fetches and returns the raw content of any public web URL via a pay-per-call scraping proxy endpoint

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/prism/scrape/%7Barg%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-prism-web-scraper-05c32ac7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zDt65wZZHclcbrchNZ6A8

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 gocreative-prism-web-scraper-05c32ac7
```

Example prompt: Can you scrape the contents of https://en.wikipedia.org/wiki/Artificial_intelligence and return the raw HTML text using a GET request?

## When to prefer this

Choose this endpoint when an AI agent needs to fetch live web content from a public URL without setting up API keys or accounts. It is ideal for lightweight, pay-per-call web access where the agent pays $0.01 USDC per scrape. Prefer this over browser automation tools when simple HTTP GET retrieval of page source is sufficient.

## Known failure modes

- Target URL is unreachable or returns a non-200 status — proxy may return an error or pass through the upstream HTTP error code
- Invalid or malformed URL in the 'input' query parameter — likely returns a 400 Bad Request
- Target site blocks scraping bots — may return empty content, CAPTCHA page, or 403 Forbidden response
- Payment not fulfilled via x402 — returns 402 Payment Required before content is delivered
- Method not in allowed enum (GET, HEAD, DELETE) — returns 400 validation error

## How this service works

483,000+ pay-per-call data APIs and free tools built on official sources — finance, company &amp; government data, FRED, Census, crypto, calculators. USDC on Base via x402, native MCP. No API key, no signup.

## Output

Returns the raw HTTP response body (HTML, JSON, or text) from the target URL specified in the 'input' query parameter, fetched via GoCreative's Prism scraping proxy. Includes whatever content the remote server returns for a GET, HEAD, or DELETE request.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "endpoint argument"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gocreative-prism-web-scraper-05c32ac7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.gocreativeai.com](https://www.zero.xyz/host/api.gocreativeai.com/llms.txt)
