# x402stock Exchanges List

> x402stock Exchanges List is a paid API for AI agents from x402stock.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a list of all US stock exchanges with identifiers, MIC codes, types, and metadata

## Facts

- Endpoint: GET https://x402stock.vercel.app/api/v1/exchanges
- 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/x402stock-exchanges-list-91a524ef
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HPN1IYn_saawCj0sLE1Be

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 x402stock-exchanges-list-91a524ef
```

Example prompt: Can you give me a list of all supported US stock exchanges with their MIC codes and acronyms so I can figure out which exchange identifier to use for my trading app?

## When to prefer this

Use this endpoint when you need to discover or validate exchange identifiers (MIC codes, acronyms, participant IDs) for US markets before querying stock data by exchange. Prefer this over hardcoding exchange IDs or using generic financial reference databases when working within the x402stock ecosystem.

## Known failure modes

- Payment failure: 402 response if USDC payment via x402 is not provided or insufficient
- Upstream data unavailable: source 'massive' may return stale or empty data
- Rate limiting or provider downtime resulting in 5xx errors
- Malformed response if exchange list is empty or partially populated

## How this service works

Reference list of US equity exchanges and market centers with names, MICs, operating MICs, and SIP participant IDs. From x402stock, a pay-per-call market & economic data API for AI agents. No API key or account; pay in USDC via x402.

## Output

A JSON object containing an as_of timestamp, total count of exchanges, data source, and an array of exchange records each with id, MIC code, operating MIC, name, type (exchange/dark pool/etc.), acronym, participant ID, and URL.

## Example request

```json
{
 "properties": ""
}
```

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "as_of": "2026-05-29T20:00:00.000Z",
  "count": 1,
  "source": "massive",
  "exchanges": [
   {
    "id": 1,
    "mic": "XASE",
    "url": "https://www.nyse.com/markets/nyse-american",
    "name": "NYSE American, LLC",
    "type": "exchange",
    "acronym": "AMEX",
    "operating_mic": "XNYS",
    "participant_id": "A"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402stock-exchanges-list-91a524ef/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402stock.vercel.app](https://www.zero.xyz/host/x402stock.vercel.app/llms.txt)
