Trade Options
Trade Options
Connect APIs
- Introduction
- Authentication
- Trade Options
- Offers
- Orders
- Users
- Business Profile
Trade Options
Trade Options
GET
/
exchange
/
api
/
orders
/
trade-options
curl --request GET \
--url https://onboard-external-dev.api.nestcoin.io/exchange/api/orders/trade-options
{
"fiats": [
{
"name": "<string>",
"logo": "<string>",
"isoCode": "<string>",
"symbol": "<string>",
"unicodeSymbol": "<string>"
}
],
"networks": [
{
"networkId": "bsc_testnet",
"name": "Binance Smart Chain Network",
"logo": "<string>",
"explorer": "<string>",
"chainId": 1,
"nativeAsset": "BNB",
"availableTokens": [
{
"symbol": "USDC",
"networkId": "<string>",
"decimals": 123,
"isNative": true,
"address": "<string>"
}
]
}
],
"paymentChannels": [
{
"paymentChannelId": "<string>",
"name": "<string>",
"supportedCurrencies": [
{
"country": "<string>",
"currency": "<string>"
}
]
}
]
}
This endpoint retrieves supported fiat currencies, blockchain networks, payment channels, and transaction limits on Onboard. Use it to configure trade parameters based on user preferences.
Response
200
application/json
Success
Unique network connector identifier on Onboard
Human readable name for the network
network's logo
URL to explorer (scan) application for the network
Protocol chain ID
Network native coin symbol
Token symbol e.g ETH, USDC, BUSD
Onboard network identifier
Token decimal size
Flags of the token is native to the blockchain or not
Token address on the chain if it's not a native token
Payment channel name
Identifier for payment channel
curl --request GET \
--url https://onboard-external-dev.api.nestcoin.io/exchange/api/orders/trade-options
{
"fiats": [
{
"name": "<string>",
"logo": "<string>",
"isoCode": "<string>",
"symbol": "<string>",
"unicodeSymbol": "<string>"
}
],
"networks": [
{
"networkId": "bsc_testnet",
"name": "Binance Smart Chain Network",
"logo": "<string>",
"explorer": "<string>",
"chainId": 1,
"nativeAsset": "BNB",
"availableTokens": [
{
"symbol": "USDC",
"networkId": "<string>",
"decimals": 123,
"isNative": true,
"address": "<string>"
}
]
}
],
"paymentChannels": [
{
"paymentChannelId": "<string>",
"name": "<string>",
"supportedCurrencies": [
{
"country": "<string>",
"currency": "<string>"
}
]
}
]
}