All capabilities

Exchanges

Centralized exchanges with CoinGecko trust scores, 24h BTC-denominated volume, jurisdiction and year established.

150exchanges

trust_score, trade_volume_24h_btc and url are on every record; year_established on 97% and country on 93%. Small enough to walk in full — 150 rows is one page at limit=200.

What's in a record

Every field the corpus returns for one record. Real shape — walked corpus-wide, not sampled.

  • id
  • exchange_id
  • name
  • year_established
  • country
  • description
  • url
  • image
  • has_trading_incentive
  • trust_score
  • trust_score_rank
  • trade_volume_24h_btc
  • trade_volume_24h_btc_normalized
  • tags
{ "id": 214, "exchange_id": "binance", "name": "Binance", "year_established": 2017, "country": "Cayman Islands", "url": "https://www.binance.com/", "has_trading_incentive": false, "trust_score": 10, "trust_score_rank": 1, "trade_volume_24h_btc": 167917.00941477102, "trade_volume_24h_btc_normalized": null, "tags": [ { "id": 302367, "name": "Binance", "slug": "binance" }, { "id": 302368, "name": "Cayman Islands", "slug": "cayman-islands" } ] }

Get it

A curl that runs against the live API right now, plus the MCP tool names for the same data.

curl https://api.alphaday.com/exchanges/?min_trust_score=9

MCP tools

get_exchangesget_exchanges_detail

What it's for

Three concrete questions this capability answers that a general crypto API does not.

  • Counterparty screening that is one call, not a spreadsheet: ?min_trust_score=9 returns the 19 exchanges scoring 9 or 10, out of 150.
  • Jurisdiction mapping: country is a real field on 93% of rows and also arrives as a tag, so "which venues are domiciled where" needs no string matching.
  • Volume comparison in a single unit: trade_volume_24h_btc is BTC-denominated across every venue, so it compares directly without an FX step.

Known limits

Required, not optional. Coverage gaps, staleness and parameter traps that were observed by running the curl above against the live server on 2026-09-18.

has_trading_incentive is false on all 150.

Walked the full set on 20 Sep 2026: not one exchange has it set. The filter works — ?has_trading_incentive=true returns 0 and false returns 150 — but it partitions nothing useful. Do not build a facet on it.

ordering and sort_by are documented here but not live.

?ordering=trust_score and ?ordering=-trust_score return identical rows, so the parameter does nothing on the public API yet; ?sort_by=trust_score returns 400. Sort the 150 rows client-side — trust_score_rank is already on each record.

description is missing on a third of rows.

100 of 150 carry one. A venue card that requires description will render empty for a third of the set, including venues with a perfect trust score.

Figures and payloads verified against the live API on 2026-09-18. The API needs no key and no signup — see the full endpoint reference and the MCP server.