polygon.io
Version:
Isomorphic Javascript client for Polygon.io Stocks, Forex, and Crypto APIs
19 lines (18 loc) • 422 B
TypeScript
export interface IExchangeRaw {
id: number;
type: string;
market: string;
mic: string;
name: string;
tape: string;
}
export interface IExchangeFormatted {
id: number;
type: string;
market: string;
mic: string;
marketIdentifierCode: string;
name: string;
tape: string;
}
export declare const exchanges: (apiKey: string, apiBase: string) => Promise<IExchangeFormatted[]>;