# GoCreative URL Content Extractor

> GoCreative URL Content Extractor 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-13).

Fetches and extracts the text/data content from a given URL, paid per call via USDC on Base

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/extract/url/%7Barg%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-url-content-extractor-cd3b2035
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CPfEMxrFCaWjIbMucGlRb

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-url-content-extractor-cd3b2035
```

Example prompt: Can you extract the content from this URL for me: https://www.example.com/article/some-news-story — I want to read the text from that page.

## When to prefer this

Use this endpoint when an AI agent needs to fetch and read the content of a specific URL without setting up API keys or subscriptions, and can pay $0.01 USDC per call via x402. Ideal for one-off web content extraction tasks in agentic workflows where pay-per-use is preferable to a monthly subscription.

## Known failure modes

- URL is unreachable or returns a non-200 status — endpoint may return an error or empty body
- Payment fails or wallet has insufficient USDC — 402 response, request not fulfilled
- URL is malformed or missing the required input query parameter — validation error
- Target site blocks automated access (bot protection, Cloudflare, etc.) — may return blocked/empty content
- Timeout if the target URL is slow to respond

## 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

The extracted text or structured content from the target URL, returned as a response body after a micropayment of $0.01 USDC on Base is processed via the x402 protocol.

## 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-url-content-extractor-cd3b2035/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)
