CCXT
nado

nado implicit API

Every raw nado endpoint exposed as a CCXT implicit method — names, HTTP verbs, paths and rate-limit costs.

Every endpoint in nado's api definition is exposed as an implicit method — a thin, generated wrapper around the raw exchange endpoint. Use these for exchange-specific functionality the CCXT API does not cover.

These methods are available in every CCXT language — TypeScript, JavaScript, Python, PHP, C#, Go and Java. Call them by the camelCase name shown in the tables below (e.g. gatewayPublicGetSymbols); the snake_case alias (gateway_public_get_symbols) also works in JavaScript, Python and PHP, and Go uses the PascalCase form (GatewayPublicGetSymbols). Switch tabs for the call in each language:

const nado = new ccxt.nado ();
const response = await nado.gatewayPublicGetSymbols (params);

Path parameters wrapped in {} (e.g. {pair}) are substituted from params; everything else in params is sent as the query string or request body. Cost is the rate-limiter weight of each call.

📚 Official nado API documentation: docs.nado.xyz

14 implicit endpoints across 5 access groups.

gateway

Base URL: https://gateway.prod.nado.xyz/v1

MethodHTTPEndpointCost
gatewayPublicGetSymbolsGETsymbols2
gatewayPublicGetQueryGETquery1
gatewayPublicGetEdgeQueryGETedge/query1
gatewayPublicPostQueryPOSTquery1
gatewayPrivatePostExecutePOSTexecute1

gatewayV2

Base URL: https://gateway.prod.nado.xyz/v2

MethodHTTPEndpointCost
gatewayV2PublicGetAssetsGETassets2
gatewayV2PublicGetPairsGETpairs1
gatewayV2PublicGetOrderbookGETorderbook1

archive

Base URL: https://archive.prod.nado.xyz/v1

MethodHTTPEndpointCost
archivePostPOST``1

archiveV2

Base URL: https://archive.prod.nado.xyz/v2

MethodHTTPEndpointCost
archiveV2PublicGetTickersGETtickers1
archiveV2PublicGetContractsGETcontracts1
archiveV2PublicGetTradesGETtrades1

trigger

Base URL: https://trigger.prod.nado.xyz/v1

MethodHTTPEndpointCost
triggerPrivatePostExecutePOSTexecute1
triggerPrivatePostQueryPOSTquery1

On this page