Onboard Connect APIs
- Introduction
- Authentication
- User Endpoints
- Trading Endpoints
- Trade Options
- Offers
- Orders
- Business Profile Endpoints
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>",
"transactionLimitsConfig": {
"kyc": {
"maxSingleTransactionLimit": 123,
"minSingleTransactionLimit": 123,
"dailyTransactionLimit": 123,
"maxLifetimeLimit": 123
},
"noKyc": {
"maxSingleTransactionLimit": 123,
"minSingleTransactionLimit": 123,
"dailyTransactionLimit": 123,
"maxLifetimeLimit": 123
}
}
}
],
"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>"
}
]
}
],
"transactionLimitsConfig": {
"kyc": {
"maxSingleTransactionLimit": 123,
"minSingleTransactionLimit": 123,
"dailyTransactionLimit": 123,
"maxLifetimeLimit": 123
},
"noKyc": {
"maxSingleTransactionLimit": 123,
"minSingleTransactionLimit": 123,
"dailyTransactionLimit": 123,
"maxLifetimeLimit": 123
}
}
}
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
Offical name of a currency
URL to fiat logo
ISO 4217 (alphabetic) for currency
Alias to isoCode
Unicode symbol for fiat
Unique network connector identifier on Onboard
"bsc_testnet"
Human readable name for the network
"Binance Smart Chain Network"
network's logo
URL to explorer (scan) application for the network
Protocol chain ID
1
Network native coin symbol
"BNB"
Token symbol e.g ETH, USDC, BUSD
"USDC"
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>",
"transactionLimitsConfig": {
"kyc": {
"maxSingleTransactionLimit": 123,
"minSingleTransactionLimit": 123,
"dailyTransactionLimit": 123,
"maxLifetimeLimit": 123
},
"noKyc": {
"maxSingleTransactionLimit": 123,
"minSingleTransactionLimit": 123,
"dailyTransactionLimit": 123,
"maxLifetimeLimit": 123
}
}
}
],
"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>"
}
]
}
],
"transactionLimitsConfig": {
"kyc": {
"maxSingleTransactionLimit": 123,
"minSingleTransactionLimit": 123,
"dailyTransactionLimit": 123,
"maxLifetimeLimit": 123
},
"noKyc": {
"maxSingleTransactionLimit": 123,
"minSingleTransactionLimit": 123,
"dailyTransactionLimit": 123,
"maxLifetimeLimit": 123
}
}
}