Tirixax API Reference

Base URL: https://tirixax.comVersion: v1

Market
Exchange
Auth
Wallet
Trading
Staking
GET/api/market/tickers

All Tickers

Get 24h ticker data for all trading pairs.

Overview

Returns a snapshot of the last 24 hours of trading activity for every available market pair. Useful for building market overview screens, price tickers, and dashboards. Data is cached for 10 seconds.

Example Request

https://tirixax.com/api/market/tickers

Response Example

{
  "success": true,
  "data": [
    {
      "marketId": "BTC_USDT",
      "lastPrice": "84250.00",
      "highPrice": "86500.00",
      "lowPrice": "82100.00",
      "baseVolume": "2400.50",
      "quoteVolume": "202042100.00",
      "priceChangePercent": "2.34"
    }
  ],
  "timestamp": "2025-04-17T10:00:00.000Z"
}