# GoCreative FRED Series Search

> GoCreative FRED Series Search 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-09).

Searches the Federal Reserve Economic Data (FRED) database for economic data series matching a keyword or phrase

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/fred/search/%7Barg%7D
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-09
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-fred-series-search-2f2a84cf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TtHnMIySXWzPjeV8QaHU1

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-fred-series-search-2f2a84cf
```

Example prompt: Search the FRED database for economic data series related to 'consumer price index' so I can find the right series ID to pull inflation data.

## When to prefer this

Use this endpoint when you need to discover FRED economic data series by keyword before fetching actual observations. Ideal for agents that need to find the right series ID for macroeconomic indicators like GDP, CPI, unemployment, interest rates, or money supply — especially when the exact series ID is not already known. Preferred over manual FRED website browsing or requiring a FRED API key, since this endpoint requires no signup and charges $0.02 USDC per call via x402.

## Known failure modes

- Empty result set if no FRED series match the search term
- HTTP 402 Payment Required if USDC payment via x402 is not attached or insufficient
- Invalid or malformed query parameter returns error
- FRED API upstream downtime may cause delayed or failed responses
- Rate limiting if payment is not properly processed

## How this service works

Keyless, pay-per-call compliance &amp; regulated-data API for AI agents — OFAC wallet + sanctions/PEP + KYB screening, SEC filings, FRED economics, FDA recalls, federal awards, plus continuous monitoring. USDC on Base/Solana via x402, native MCP. No API key, no signup.

## Output

A list of matching FRED data series including series IDs, titles, descriptions, observation frequencies, units, and seasonal adjustment status — drawn directly from the Federal Reserve Economic Data 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/gocreative-fred-series-search-2f2a84cf/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)
