# FRED Economic Series Data via GoCreative

> FRED Economic Series Data via GoCreative 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).

Returns the latest value, units, frequency, and historical observations for any FRED economic time series (GDP, UNRATE, CPIAUCSL, mortgage rates, fed funds, etc.)

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/fred/series/:var1
- 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/fred-economic-series-data-via-gocreative-9443669f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KUG7MOTD8m_64_e9cA_wJ

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 fred-economic-series-data-via-gocreative-9443669f
```

Example prompt: What is the latest US unemployment rate from FRED? Pull the UNRATE series and give me the most recent value along with units and frequency.

## When to prefer this

Use this endpoint when you need official US or global macroeconomic time series data from FRED — including GDP, unemployment, CPI, interest rates, mortgage rates, and 800k+ other series — and want keyless pay-per-call access via USDC on Base or Solana without managing an API key.

## Known failure modes

- Invalid series ID returns an error — ensure the FRED series identifier (e.g. GDP, UNRATE) is correct
- Series not found if the requested ID does not exist in FRED's database
- Payment failure if insufficient USDC balance on Base/Solana for the $0.02 per-call fee
- Rate limiting or timeout for high-frequency requests

## How this service works

Any Federal Reserve economic series by FRED id (GDP, UNRATE unemployment, CPIAUCSL inflation, MORTGAGE30US, FEDFUNDS, DEXUSEU...) — latest value, units, frequency, last-updated, and recent observations. 800k+ official US/global economic time series. For finance, trading, and macro-research agents.

## Output

Returns the latest value of the requested FRED series along with its units, frequency (e.g. monthly, quarterly), and recent historical observations — sourced directly from the Federal Reserve Bank of St. Louis's 800k+ official economic time series database.

## 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/fred-economic-series-data-via-gocreative-9443669f/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)
