Vessel Finance API
  1. Market Data
Vessel Finance API
  • Introduction
  • General Info
  • HMAC Signature Guide
  • Poseidon Signature Guide
  • Internal Transfer Signature Guide
  • Error Code
  • Vessel REST API
    • Public
      • Market Data
        • 24hr Ticker Statistics
          GET
        • Kline / Candlestick Data
          GET
        • Order Book
          GET
        • Recent Trades List
          GET
        • Average Price
          GET
        • AMM Pool Last 24h Data
          GET
      • Exchange Data
        • Ticker Info
        • Asset Info
        • Trade Fee
        • AMM Pool Info
    • User
      • Asset
        • User Asset
        • Withdraw
        • Withdraw History
        • Deposit History
        • Claim History
        • Internal Transfer (Send)
        • Internal Transfer History
      • Order
        • Place Order
        • Cancel Order
        • Open Orders
        • Completed Orders
        • All Orders
        • Query Order
        • Modify Order
      • AMM
        • Add Liquidity
        • Remove Liquidity
        • Collect Fee
        • AMM Position
        • AMM Action History
      • Account
        • User Profile
        • User Trade List
  • Vessel WebSocket
    • Market
      • Order Book
      • K Line
      • Recent Trades
      • 24hr Ticker Statistics
      • Ticker Setting Upade
    • User
      • Authorize
      • Balance
      • Account
  1. Market Data

24hr Ticker Statistics

Testnet Env
https://testnet.trade.vessel.finance
Testnet Env
https://testnet.trade.vessel.finance
GET
/api/v1/public/ticker/24hr
Last modified:2024-10-15 06:23:56
24-Hour Ticker Statistics provides a summary of trading activity for a specific trading pair over the past 24 hours on our platform.

Request

Query Params
symbol
string 
required
Example:
WBTCUSDT

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/ticker/24hr?symbol=WBTCUSDT'

Responses

🟢200OK
application/json
Body
symbol
string 
required
The trading pair symbol, representing the assets being traded.
type
string 
required
The type of trading pair (e.g., "SPOT" for spot trading).
openTime
string 
required
The timestamp when the 24-hour period started.
openPrice
string 
required
The opening price of the trading pair within the 24-hour period.
highPrice
string 
required
The highest price observed during the 24-hour period.
lowPrice
string 
required
The lowest price observed during the 24-hour period.
closePrice
string 
required
The closing price of the trading pair within the 24-hour period.
volume
string 
required
The total trading volume in terms of base token for the trading pair within the 24-hour period.
trades
string 
required
The total number of trades executed for the trading pair within the 24-hour period.
closeTime
string 
required
The timestamp when the 24-hour period ended.
quoteVolume
string 
required
The total trading volume in terms of the quote asset within the 24-hour period.
takerBuyBaseVolume
string 
required
The volume of the base asset bought by takers within the 24-hour period.
takerBuyQuoteVolume
string 
required
The volume of the quote asset bought by takers within the 24-hour period.
Example
{
  "symbol": "WBTCUSDC",
  "type": "SPOT",
  "openTime": "1728532800000",
  "openPrice": "61072.96",
  "highPrice": "61072.96",
  "lowPrice": "61072.96",
  "closePrice": "61072.96",
  "volume": "0.0001",
  "trades": "1",
  "closeTime": "1728619199999",
  "quoteVolume": "6.107296",
  "takerBuyBaseVolume": "0.0001",
  "takerBuyQuoteVolume": "0"
}
Previous
Public
Next
Kline / Candlestick Data
Built with