# Kronos Signals Macro Context API

> Kronos Signals Macro Context API is a paid API for AI agents from kronossignals.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Returns current TradFi macro indicators (VIX, DXY, US 10-Year yield, S&P 500, gold) relevant to crypto trading, with 15-minute caching and null-safe responses.

## Facts

- Endpoint: GET https://kronossignals.com/api/v1/macro
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kronos-signals-macro-context-api-f6e5a36c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_22DFWQ5oGSKFfcOTa7Eoz

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 kronos-signals-macro-context-api-f6e5a36c
```

Example prompt: What are the current macro conditions — VIX fear gauge, US dollar index, 10-year yield, S&P 500, and gold price — so I can assess the TradFi backdrop for my crypto trades?

## When to prefer this

Use this endpoint when you need a quick, low-cost snapshot of traditional finance macro indicators (VIX, DXY, yields, equities, gold) to provide market context for crypto trading decisions. Prefer this over building your own multi-source aggregation since it combines stooq and Yahoo Finance with null-safe, never-fabricated responses. Ideal for agents that need to correlate crypto market behavior with TradFi risk sentiment.

## Known failure modes

- All fields return null when both stooq.com and Yahoo Finance are unreachable
- Stale data (up to 15 minutes old) returned due to caching layer
- Payment failure if 0.001 USDC x402 payment is not included or is malformed
- HTTP 402 if no payment header is present

## How this service works

TradFi macro context for crypto traders and agents: VIX (fear gauge), DXY (US Dollar Index), US 10-Year yield, S&P 500 (SPX), and gold. Sourced from stooq.com and Yahoo Finance in parallel with 15-minute caching. All fields are null if sources are unreachable — never fabricated. $0.02 USDC via x402.

## Output

A JSON object containing the latest values for VIX, DXY (US Dollar Index), US 10-Year Treasury yield, S&P 500 (SPX), and gold price. All fields are null if upstream sources (stooq.com and Yahoo Finance) are unreachable — values are never fabricated. Data is cached for up to 15 minutes.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "dxy": {
   "value": 104.2,
   "source": "stooq.com",
   "unavailable": false
  },
  "spx": {
   "value": 5488,
   "source": "stooq.com",
   "unavailable": false
  },
  "vix": {
   "value": 16.8,
   "source": "stooq.com",
   "unavailable": false
  },
  "gold": {
   "value": 2325,
   "source": "stooq.com",
   "unavailable": false
  },
  "as_of": "2026-07-02T10:00:00.000Z",
  "cached": false,
  "disclaimer": "TradFi data from stooq.com / Yahoo Finance. Informational only, not financial advice.",
  "us_10y_yield": {
   "value": 4.31,
   "source": "stooq.com",
   "unavailable": false
  },
  "cache_age_seconds": null,
  "btc_dxy_correlation": -0.38,
  "btc_spx_correlation": 0.72,
  "btc_dxy_correlation_available": true,
  "btc_spx_correlation_available": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kronos-signals-macro-context-api-f6e5a36c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from kronossignals.com](https://www.zero.xyz/host/kronossignals.com/llms.txt)
