# GoCreative Polygon Blockchain Data Scraper

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

Fetches on-chain data from the Polygon blockchain network via a pay-per-call scrape endpoint, returning structured blockchain information for a given input argument.

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/scrape/polygon/%7Barg%7D
- 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/gocreative-polygon-blockchain-data-scraper-245cc290
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7RrItvXOXZZ4cf4CABFu9

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-polygon-blockchain-data-scraper-245cc290
```

Example prompt: Pull the on-chain data for Polygon address 0x1234abcd5678ef from GoCreative's Polygon scraper — I need the latest blockchain info for that contract.

## When to prefer this

Use this endpoint when you need raw Polygon blockchain data on a pay-per-call basis without signing up for a dedicated blockchain API key. Ideal for agents that need occasional Polygon lookups without committing to a subscription, or that already use x402 micropayment infrastructure on Base.

## Known failure modes

- Invalid or malformed Polygon address/argument returns an error or empty result
- Payment of $0.05 USDC not fulfilled triggers 402 Payment Required response
- Network or chain RPC downtime causes timeout or 503
- Unsupported argument type returns no data or error
- Rate limiting if too many calls are made in rapid succession

## How this service works

Keyless, pay-per-call compliance &amp; regulated-data API for AI agents — OFAC wallet + sanctions/PEP + KYB screening, SEC filings, FRED economics, FDA recalls, federal awards, plus continuous monitoring. USDC on Base/Solana via x402, native MCP. No API key, no signup.

## Output

Returns structured on-chain data from the Polygon blockchain for the provided address or identifier — may include transaction history, contract state, token balances, or other chain-specific records depending on the argument supplied.

## 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-polygon-blockchain-data-scraper-245cc290/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)
