Ticker Info
Testnet Env
Testnet Env
GET
/api/v1/public/tickerInfo
Last modified:2024-10-15 06:23:56
Request
Query Params
symbol
string
optional
Example:
ARBUSDC
symbols
string
optional
Example:
WBTCUSDT,WBTCUSDC
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://testnet.trade.vessel.finance/api/v1/public/tickerInfo?symbols=WBTCUSDT,WBTCUSDC'
Responses
🟢200OK
application/json
Body
symbols
array [object {22}]
required
id
string
optional
symbol
string
required
status
string
required
baseAssetId
string
required
baseAssetName
string
required
baseAssetPrecision
string
required
baseScaleK
string
optional
baseOnChainDecimal
string
optional
baseAssetOnChainDecimal
string
required
quoteAssetId
string
required
quoteAssetName
string
required
quoteAssetPrecision
string
required
quoteScaleK
string
optional
orderTypes
array[string]
required
isSpotTradingAllowed
boolean
required
permissions
array[string]
required
quoteOnChainDecimal
string
optional
quoteAssetOnChainDecimal
string
required
minBaseTradingSize
string
required
maxBaseTradingSize
string
required
makerFeeDiscount
string
required
takerFeeDiscount
string
required
Example
{
"symbols": [
{
"id": "1",
"symbol": "AAVEUSDT",
"status": "TRADING",
"baseAssetId": "6",
"baseAssetName": "AAVE",
"baseAssetPrecision": "3",
"baseScaleK": "100000",
"baseOnChainDecimal": "10",
"baseAssetOnChainDecimal": "10000000000",
"quoteAssetId": "2",
"quoteAssetName": "USDT",
"quoteAssetPrecision": "5",
"quoteScaleK": "1000",
"orderTypes": [
"LIMIT",
"MARKET"
],
"isSpotTradingAllowed": true,
"permissions": [
"SPOT"
],
"quoteOnChainDecimal": "18",
"quoteAssetOnChainDecimal": "1000000000000000000",
"minBaseTradingSize": "0.01",
"maxBaseTradingSize": "1000000",
"makerFeeDiscount": "100",
"takerFeeDiscount": "100"
}
]
}
Modified at 2024-10-15 06:23:56