Search economic indicators by keyword: Federal Reserve series (FRED), World Bank developme
Search economic indicators by keyword: Federal Reserve series (FRED), World Bank development data, US Treasury rates, national accounts (BEA), labor statistics (BLS), commitments of traders (CFTC), ECB foreign-exchange rates, and energy data (EIA). Returns indicator, value, period, and a provenance URL per match. For macroeconomic, financial, and research agents.
50000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-20
updated
Provider
api.osf-master-server.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x72f62dE8b70d6CFa8Cc2dF6f21F243f289F3396c",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"pathParams": {
"query": ":query"
},
"queryParams": {
"format": "json"
},
"type": "http"
},
"output": {
"example": {
"match_count": 1,
"matches": [
{
"record_id": 12345,
"source": "FRED",
"title": "Unemployment Rate (UNRATE)"
}
],
"result": "MATCHES_FOUND",
"search_evidence": {
"_about": "Proof of work, on EVERY result including NO_MATCH: the terms actually searched, how many records were in scope per source, how fresh they are, whether the scan completed or was truncated, and on an empty result the per-term record counts plus a known-good control query re-measured live in the same request. Numbers shown are illustrative.",
"corpus": {
"newest_record_ingested_utc": "2026-08-01T15:47:55Z",
"records_in_scope": 1558599
},
"result_confidence": "matches_found",
"scan": {
"candidate_set_complete": true,
"candidates_examined": 35,
"matches_omitted": 25
}
}
},
"type": "json"
}
},
"routeTemplate": "/x402/economic/indicators/:query",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"pathParams": {
"properties": {
"query": {
"description": "Keyword(s): indicator, country, or series. E.g. 'unemployment rate' or 'GDP growth'.",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
},
"queryParams": {
"properties": {},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.osf-master-server.com/x402/economic/indicators/:query" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.osf-master-server.com/x402/economic/indicators/:query");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.osf-master-server.com/x402/economic/indicators/:query")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/5075.json, and this resource appears in /discovery/resources and /discovery/search.