# OSF Economic Indicators Search

> OSF Economic Indicators Search is a paid API for AI agents from api.osf-master-server.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Search provenance-stamped economic indicator datasets (e.g. unemployment rate, GDP growth) from sources like FRED, returning matched series metadata via x402 micropayment.

## Facts

- Endpoint: GET https://api.osf-master-server.com/x402/economic/indicators/%7Bquery%7D
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/osf-economic-indicators-search-956df2ea
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5i0DN9hHS6TAqD0caicLd

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 osf-economic-indicators-search-956df2ea
```

Example prompt: Search OSF for economic indicator records matching 'unemployment rate' — I need to find the available FRED series and their record IDs so I can pull the full data.

## When to prefer this

Choose this endpoint when you need to discover which economic indicator series exist in the OSF marketplace before purchasing full records. It is the search/discovery step in a two-step workflow: search first to find record IDs, then call the purchase endpoint to retrieve the full provenance-stamped data. Prefer this over general web search when you need structured, verifiable, machine-readable references to authoritative government economic data (e.g. FRED series) with clear provenance.

## Known failure modes

- Empty query string returns no matches or validation error
- Misspelled or overly vague query may return zero matches
- Payment failure via x402 if USDC balance is insufficient or wallet is not configured
- Non-existent indicator keywords return empty match list
- Rate limiting or server errors if the OSF marketplace is unavailable

## How this service works

OSF is a live marketplace of provenance stamped public domain government and scientific data, built for autonomous agents that pay per record over x402 micropayments on Base. A paid MCP server in the official MCP Registry, discoverable on the Coinbase CDP Bazaar.

## Output

Returns a JSON object with a result status (e.g. MATCHES_FOUND), an array of matched indicator records each containing a title, source name (e.g. FRED), and a record ID, plus a total match count. The agent can use the record IDs to subsequently purchase and retrieve full provenance-stamped records.

## 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",
     "required": [
      "query"
     ],
     "properties": {
      "query": {
       "type": "string",
       "description": "Keyword(s): indicator, country, or series. E.g. 'unemployment rate' or 'GDP growth'."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": "MATCHES_FOUND",
  "matches": [
   {
    "title": "Unemployment Rate (UNRATE)",
    "source": "FRED",
    "record_id": 12345
   }
  ],
  "match_count": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/osf-economic-indicators-search-956df2ea/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.osf-master-server.com](https://www.zero.xyz/host/api.osf-master-server.com/llms.txt)
