# Global Stock Indices Real-Time Data

> Global Stock Indices Real-Time Data is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns real-time quotes for 12 major global stock indices including Nikkei, Hang Seng, FTSE, DAX, CAC 40, SENSEX, Bovespa, KOSPI, ASX, Russell, and VIX in a single API call.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/global-indices
- 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/global-stock-indices-real-time-data-aa30232b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QkP4RyNz0nrGSF-7tHZeQ

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 global-stock-indices-real-time-data-aa30232b
```

Example prompt: Can you pull up the latest values for all the major global stock indices right now — I want to see where the Nikkei, DAX, FTSE, Hang Seng, VIX, and the others are trading?

## When to prefer this

Choose this endpoint when you need a broad, unified snapshot of global equity market conditions across multiple regions (Asia, Europe, Americas, Australia) in a single call. Ideal for portfolio dashboards, market briefings, or volatility monitoring. For China A-share indices specifically (Shanghai, Shenzhen, ChiNext, STAR), prefer the dedicated A-share endpoint. For crypto prices, use the crypto endpoint instead.

## Known failure modes

- Payment not processed — x402 payment required before data is returned
- Market closed or data feed unavailable for specific index — partial data may be returned
- Upstream data provider outage — stale or missing index values
- Rate limiting if requests are sent too frequently

## How this service works

全球主要股指 — 全球12大股指一体化：日经/恒生/富时/DAX/CAC/SENSEX/Bovespa/KOSPI/澳洲/罗素/VIX等实时行情。

## Output

Returns real-time data for up to 12 major global stock indices in a single response, including index name, current value, price change, and percentage change for markets such as Nikkei 225, Hang Seng, FTSE 100, DAX, CAC 40, SENSEX, Bovespa, KOSPI, ASX 200, Russell 2000, and VIX.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "raw": {
   "count": 12,
   "source": "Yahoo Finance/Global Indices",
   "indices": [
    {
     "index": "日经225",
     "price": 68308.59,
     "symbol": "^N225",
     "currency": "JPY",
     "exchange": "OSA",
     "previous_close": null
    },
    {
     "index": "日经225",
     "price": 68308.59,
     "symbol": "^N225",
     "currency": "JPY",
     "exchange": "OSA",
     "previous_close": null
    }
   ]
  },
  "source": "global_indices",
  "data_type": "金融",
  "collected_at": "2026-08-14T00:13:17Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/global-stock-indices-real-time-data-aa30232b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdatum.com](https://www.zero.xyz/host/agentdatum.com/llms.txt)
