Skip to main content
GET
/
partner
/
exchange
/
ticker
/
24h
Get 24h ticker
curl --request GET \
  --url https://api.stabyl.com/v1/partner/exchange/ticker/24h \
  --header 'X-Api-Key: <api-key>'
{
  "data": {
    "tickers": [
      {
        "best_ask": "1651.00",
        "best_bid": "1649.00",
        "high": "1660.00",
        "last": "1650.00",
        "low": "1635.00",
        "open": "1640.00",
        "pair_id": "USD/NGN",
        "price_change": "10.00",
        "price_change_percent": "0.61",
        "timestamp": "2026-05-24T12:00:00Z",
        "volume": "10000.00",
        "volume_quote": "16500000.00"
      }
    ]
  },
  "status": "success"
}

Documentation Index

Fetch the complete documentation index at: https://stabyl.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Api-Key
string
header
default:sb_test_your_key
required

API key. Send it in the X-Api-Key header.

Query Parameters

pair_id
string | null

Trading pair identifier returned by GET /partner/exchange/markets, for example USD/NGN.

Response

24h ticker statistics

data
object
required

Ticker response containing current and 24-hour statistics for one or more markets.

status
enum<string>
required
Available options:
success