# GoCreative Web Fetch API

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

Fetches real-world data from a specified web endpoint or URL argument, returning structured results from official data sources across finance, government, crypto, and more

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/web/%7Barg%7D
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-web-fetch-api-4946f831
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7d5BU2ShKUXtYM8T3_Uvw

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-web-fetch-api-4946f831
```

Example prompt: Can you fetch the latest FRED GDP data for me using GoCreative's web API — pass the FRED series URL as the input argument and return whatever structured data comes back?

## When to prefer this

Choose this endpoint when you need to fetch real-world data from official sources (finance, government, FRED, Census, crypto) without setting up API keys or subscriptions, and you want to pay per call in USDC via x402. Prefer this over scraping or unofficial data sources when official structured data is needed on demand.

## Known failure modes

- Missing required 'input' query parameter returns 400 error
- Invalid or unreachable URL argument returns error response
- Payment not accepted or USDC balance insufficient triggers 402 response
- Unsupported HTTP method (e.g. POST) returns 405 error
- Rate limiting or upstream source unavailability returns 503

## 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 structured data from the requested web endpoint or official data source — could be economic time series, financial metrics, company information, census statistics, or crypto data depending on the input URL argument provided.

## 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-web-fetch-api-4946f831/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)
