# GoCreative Data API — Pay-Per-Call Real-World Data Endpoint

> GoCreative Data API — Pay-Per-Call Real-World Data Endpoint is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-14).

Fetches real-world data (finance, company, government, FRED, Census, crypto, calculators) from 483,000+ endpoints via a single parameterized GET call, paid in USDC on Base via x402.

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/x/%7Barg%7D
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-data-api-pay-per-call-real-world-data-endpoint-53792dbf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_h79LshnJ7ck_BXR3nzlFq

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-data-api-pay-per-call-real-world-data-endpoint-53792dbf
```

Example prompt: Pull the latest FRED GDP growth rate data for the US using GoCreative's pay-per-call data API — no API key needed, just pass the FRED series argument.

## When to prefer this

Choose this endpoint when you need no-signup, no-API-key access to a broad range of official real-world data (FRED, Census, finance, crypto, company, government) on a pure pay-per-call basis via x402 USDC micropayments on Base. Ideal for AI agents that need ad-hoc data retrieval across many domains without managing subscriptions or credentials.

## Known failure modes

- Payment not provided or insufficient USDC — returns HTTP 402 Payment Required
- Invalid or unrecognized `input` argument — returns error or empty result
- Unsupported HTTP method used (only GET/HEAD/DELETE allowed) — returns 405
- Upstream official data source unavailable — returns 503 or timeout
- Malformed query parameter — returns 400 Bad Request

## 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 real-world data corresponding to the queried endpoint argument — could be financial metrics, economic time series, company records, Census statistics, crypto prices, or calculator outputs, depending on the `input` query string passed.

## 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-data-api-pay-per-call-real-world-data-endpoint-53792dbf/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)
