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

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

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"
}
Modified at 2024-10-15 06:23:56
Previous
Public
Next
Kline / Candlestick Data
Built with