● Open source · Data / 04
Catalogue
One ID for every asset, everywhere.
A typed, open registry of crypto assets, trading platforms, instrument mappings, and name
translations. Resolves the inconsistent IDs and symbols that exchanges, wallets, and data
APIs throw at you — served as a static JSON API, no auth required.
// npm install @tribulnation/catalogue
import { Catalogue } from '@tribulnation/catalogue'
const client = new Catalogue()
const [btc] = await client.findBySymbol('BTC')
const pairs = await client.getSpotInstruments('binance')
# pip install tribulnation-catalogue
from tribulnation.catalogue import Catalogue
c = Catalogue.load()