curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getmarketpairlist \
--header 'Content-Type: application/json' \
--data '{}'
{
"orderPair": [
{
"sell_token_id": "<string>",
"buy_token_id": "<string>"
}
]
}
curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getmarketpairlist \
--header 'Content-Type: application/json' \
--data '{}'
{
"orderPair": [
{
"sell_token_id": "<string>",
"buy_token_id": "<string>"
}
]
}
orderPair
— array of trading pair objects, each containing:
sell_token_id
— token ID for the sell side of the pair (empty for TRX)buy_token_id
— token ID for the buy side of the pair (empty for TRX)wallet/getmarketpairlist
method is used for:
All available trading pairs
The response is of type object
.