# GoCreative Macro Finance Data Lookup

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

Fetches macroeconomic financial data (e.g. GDP, inflation, interest rates) by a named indicator argument, sourced from official data providers like FRED and Census.

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/finance/macro/%7Barg%7D
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-macro-finance-data-lookup-ff6b2e28
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yx2B9lJROX4nzTgNz0CAq

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-macro-finance-data-lookup-ff6b2e28
```

Example prompt: Can you pull the current US inflation rate (CPI) from GoCreative's macro finance data — use 'CPIAUCSL' as the indicator argument?

## When to prefer this

Use this endpoint when you need official macroeconomic indicator data (GDP, CPI, interest rates, unemployment, etc.) sourced from FRED, US Census, or similar government authorities, especially in a pay-per-call context with no API key required. Prefer over generic finance APIs when you need authoritative government-sourced macro data with micropayment billing via USDC on Base.

## Known failure modes

- Invalid or unrecognized macro indicator argument returns an error or empty result
- Payment failure via x402 protocol results in 402 Payment Required response
- Rate limiting or server errors return 5xx responses
- Upstream FRED or Census data source unavailable causes delayed or missing data
- Malformed argument string in URL path 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 macroeconomic data for the specified indicator — typically a value or time series from official sources like FRED or the US Census Bureau, including the data point(s), series metadata, and timestamp/period information.

## 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-macro-finance-data-lookup-ff6b2e28/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)
