# Global Blue-Chip Stock Quotes

> Global Blue-Chip Stock Quotes is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns real-time price quotes for 17 major global blue-chip stocks including SoftBank, Toyota, AstraZeneca, SAP, Samsung, TSMC, ASML, and BHP Billiton.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/global-markets
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/global-blue-chip-stock-quotes-6660b185
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Usp_tJO1xTH24wL7_pq-F

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-blue-chip-stock-quotes-6660b185
```

Example prompt: Can you pull the latest real-time quotes for all 17 global blue-chip stocks — SoftBank, Toyota, TSMC, ASML, Samsung, SAP, AstraZeneca, BHP and the rest — in one shot?

## When to prefer this

Choose this endpoint when you need a single API call to retrieve real-time quotes across a curated set of 17 major global blue-chip stocks spanning Asia, Europe, and Australia. Prefer this over general stock APIs when you specifically need these internationally diversified blue-chips (Toyota, TSMC, Samsung, ASML, SAP, AstraZeneca, SoftBank, BHP, etc.) without needing to make per-ticker calls. It complements sibling endpoints for US stock movers and global indices.

## Known failure modes

- Upstream data source unavailable — quote data may be stale or missing
- Network timeout if underlying market data provider is slow
- HTTP 402 Payment Required if x402 payment is not provided or insufficient
- Markets closed or trading halted — prices may reflect last close
- Partial data if one or more individual stock feeds are temporarily unavailable

## How this service works

全球蓝筹行情 — 全球17只蓝筹股一体化行情：软银/丰田/阿斯利康/SAP/三星/台积电/ASML/必和必拓等实时报价。

## Output

Returns real-time market quotes for 17 major global blue-chip equities (SoftBank, Toyota, AstraZeneca, SAP, Samsung, TSMC, ASML, BHP Billiton, and others), including current price, and related market data fields for each stock in a unified response object.

## 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": 15,
   "source": "Yahoo Finance/Global Markets",
   "stocks": [
    {
     "name": "软银集团",
     "price": 5575,
     "symbol": "9984.T",
     "currency": "JPY",
     "exchange": "JPX"
    },
    {
     "name": "软银集团",
     "price": 5575,
     "symbol": "9984.T",
     "currency": "JPY",
     "exchange": "JPX"
    }
   ]
  },
  "source": "global_markets",
  "data_type": "金融",
  "collected_at": "2026-08-14T00:13:27Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/global-blue-chip-stock-quotes-6660b185/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)
