# GoCreative Eco Data API

> GoCreative Eco Data 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-15).

Fetches real-world economic, financial, government, or company data from 483,000+ pay-per-call endpoints built on official sources via a single parameterized route

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/ai/eco/%7Barg%7D
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-eco-data-api-90bf8fb9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7karkxQ_KavgLnigkIIkD

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-eco-data-api-90bf8fb9
```

Example prompt: Pull the latest US unemployment rate time series from FRED for me — use GoCreative's eco data endpoint with 'UNRATE' as the argument, no API key needed, just pay per call.

## When to prefer this

Use this endpoint when an AI agent needs to access official economic, financial, government, Census, or FRED data on a pay-per-call basis without any API key or account signup. It is especially suited for agents that need to query one of 483,000+ parameterized data endpoints cheaply ($0.005 USDC) and programmatically via the x402 micropayment protocol.

## Known failure modes

- Invalid or unrecognized arg path parameter returns an error or empty result
- Missing required `input` query parameter causes a 400-level response
- Payment not completed (x402 flow) results in a 402 Payment Required response
- Upstream official data source is unavailable or rate-limited, causing a 503 or timeout
- Argument resolves to a non-existent dataset or deprecated endpoint

## 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 matched official source — could be a FRED economic series, Census statistic, company financial record, crypto price, or calculator output, depending on the `arg` path parameter and `input` query string 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-eco-data-api-90bf8fb9/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)
