Tickers

Retrieve 24-hour pricing and volume information on each market pair available on Vertex.

Request

GET [ARCHIVE_V2_ENDPOINT]/tickers?market={spot|perp}&edge={true|false}

Request Parameters

Parameter
Type
Required
Description

market

string

No

Indicates the corresponding market to fetch trading tickers info for. Allowed values are: spotand perp. When no market param is provided, it returns all available tickers.

edge

bool

No

Wether to retrieve volume metrics for Vertex Edge. When turned off, it only returns metrics for the current chain. Defaults to true.

Response

Note: the response is a map of ticker_id -> ticker info object.

{
    "ETH_USDC": {
        "ticker_id": "ETH_USDC",
        "base_currency": "ETH",
        "quote_currency": "USDC",
        "last_price": 1619.1,
        "base_volume": 1428.32,
        "quote_volume": 2310648.316391866,
        "price_change_percent_24h": -1.0509394462969588
    },
    "BTC_USDC": {
        "ticker_id": "BTC_USDC",
        "base_currency": "BTC",
        "quote_currency": "USDC",
        "last_price": 25728.0,
        "base_volume": 552.048,
        "quote_volume": 14238632.207250029,
        "price_change_percent_24h": -0.6348599635253989
    }
}

Response Fields

Field Name
Type
Nullable
Description

ticker_id

string

No

Identifier of a ticker with delimiter to separate base/target.

base_currency

string

No

Symbol of the base asset.

quote_currency

string

No

Symbol of the target asset.

last_price

decimal

No

Last transacted price of base currency based on given quote currency.

base_volume

decimal

No

24-hours trading volume for the pair (unit in base)

quote_volume

decimal

No

24-hours trading volume for the pair (unit in quote/target)

price_change_percent_24h

decimal

No

24-hours % price change of market pair

Last updated