# ToolOracle US Macro Economic Snapshot

> ToolOracle US Macro Economic Snapshot is a paid API for AI agents from tooloracle.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a unified US macroeconomic snapshot including Fed funds rate, CPI, PPI, yield curve, unemployment, GDP, housing index, and consumer sentiment plus trading signals in a single call

## Facts

- Endpoint: POST https://tooloracle.io/v2/macro_snapshot
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tooloracle-io-eb4dc634
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_i4w2d2v1QWpKHIT8H6efn

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 tooloracle-io-eb4dc634 -d '<json body>'
```

Example prompt: Pull me a full US macro snapshot right now — I need the Fed funds rate, CPI, PPI, yield curve spread, unemployment, GDP growth, housing index, and consumer sentiment, plus any trading signals, so I can rebalance my portfolio.

## When to prefer this

Choose this endpoint when you need a comprehensive, multi-indicator US macroeconomic snapshot in a single call rather than querying FRED, BLS, and BEA individually. Ideal for trading agents, portfolio rebalancers, risk models, DeFi macro hedging strategies, or economic research workflows that need a consistent, aggregated view of the macro environment with actionable trading signals included.

## Known failure modes

- Upstream data source (FRED/BLS/BEA) unavailable — returns 503 or stale data warning
- Payment not settled — returns 402 Payment Required
- Rate limit exceeded — returns 429 Too Many Requests
- Data not yet published for current period — returns last available values with timestamp lag warning

## How this service works

AgentNOMOS Macroeconomic Indicator Snapshot: six US macro feeds in one call — Fed funds rate with next FOMC date, CPI and PCE inflation with deviation from the Fed target, nonfarm payrolls and unemployment, GDP with annualized growth, Treasury 2Y/10Y yields with curve status and 30Y mortgage rate, and consumer sentiment. Sourced from FRED (Fed, BLS, BEA, US Treasury, U. Michigan). Cached, not real-time. Raw values only: no forecast, no trading signal.

## Output

A structured JSON object containing real-time US macroeconomic indicators (Fed funds rate, CPI, PPI, 10Y-2Y yield spread, unemployment rate, GDP growth, housing price index, consumer sentiment) sourced from FRED, BLS, and BEA, plus derived trading signals for risk assessment and portfolio decisions.

## Example request

```json
{
 "input": {
  "body": {},
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tooloracle-io-eb4dc634/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tooloracle.io](https://www.zero.xyz/host/tooloracle.io/llms.txt)
