---
title: "List connected venue edges"
method: GET
path: "/v1/edges"
tags: ["Market Data"]
---

# List connected venue edges

`GET /v1/edges`

Shows all connected exchanges and the symbols they're streaming. Use /v1/pairs for trading pair details.

## Response `200`

Edge list

- EdgeStatusResponse[]
  - `connected` boolean, required
  - `edge_id` string, required
  - `last_seen_ms` integer, required
  - `region` string, nullable — Region where this edge is connected (e.g., "us-east-1", "eu-west-1", "ap-northeast-1"). Local edges inherit the CC's region; remote edges report their peer CC's region.
  - `remote` boolean, nullable — True if this edge is connected to a remote peer CC, not this one directly.
  - `supports_algo_runtime` boolean, required — Whether this edge supports WASM algo deployment/execution
  - `symbol_count` integer, required — Count of markets the edge has subscribed to. Equal to `symbols.len()`. All prediction edges run universe-eager — there's no longer a "hot vs cold" distinction.
  - `symbols` EdgeSymbol[], required — Full list of symbols this edge is subscribed to, each tagged with its `instrument_type`. Without the tag, perp and spot edges that share a canonical (Binance, Bybit, OKX) are indistinguishable here.
    - `instrument_type` string, required — `"spot"` / `"perp"` / `"prediction"`. Sourced from each edge's PairSpec (CC-LINK Hello + SubscriptionAck). Distinguishes `venue-edge-binance` (spot BTC-USDT) from `venue-edge-binance-perp` (perp BTC-USDT on the same canonical).
    - `symbol` string, required — Canonical symbol the edge advertises (e.g. `BTC-USDT`). Perp and spot share the same canonical when the venue exposes both — the `instrument_type` field is what disambiguates the books.

---

[API](https://skmtc.dev/sequencemkts/apis/sequence-markets-api.md) · [All operations](https://skmtc.dev/sequencemkts/apis/sequence-markets-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/sequencemkts/sequence-markets-api/revisions/1c826964b9f9/schema)
