Lists all token pairs in the network. ## Request Structure `JSON object:` ```JSON { "method": "srv_xchange", "subcommand": ["token_pair","list","all"], "arguments": { "net": "network_name" }, "id": "1" } ``` `Parameters:` **`net (network_name)`** - name of the Cellframe Network. The list of networks can be found in the `<Config_dir> \ etc \ network` folder or received using - [[Node Command - NET LIST]] ### Curl Example `Request:` ```actionscript curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d '{ "method": "srv_xchange", "subcommand": ["token_pair","list","all"], "arguments": { "net": "riemann" }, "id": "1" }' ``` `Response:` ```json { "type": 2, "result": [ { "TICKERS PAIR": [ { "limit": 1000 }, { "ticker_1": "tKEL", "ticker_2": "mtKEL" }, { "ticker_1": "tKEL", "ticker_2": "CELL" }, { "ticker_1": "tKEL", "ticker_2": "KEL" }, { "ticker_1": "tKEL", "ticker_2": "USDC" }, { "ticker_1": "tKEL", "ticker_2": "DAI" }, { "ticker_1": "tKEL", "ticker_2": "BNB" }, # this output was cut to make it readable ], "pair count": 190 } ], "id": 1 } ```