Pairs

Retrieve details of all available trading pairs on Vertex, including corresponding base and quote.

Request

GET [GATEWAY_V2_ENDPOINT]/pairs?=market={spot|perp}

Request Parameters

ParameterTypeRequiredDescription

market

string

No

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

Response

[
    {
        "ticker_id": "BTC-PERP_USDC",
        "base": "BTC-PERP",
        "quote": "USDC"
    },
    {
        "ticker_id": "ETH-PERP_USDC",
        "base": "ETH-PERP",
        "quote": "USDC"
    },
    {
        "ticker_id": "BTC_USDC",
        "base": "BTC",
        "quote": "USDC"
    },
    {
        "ticker_id": "ETH_USDC",
        "base": "ETH",
        "quote": "USDC"
    }
]

Response Fields

Field nameTypeNullableDescription

ticker_id

string

No

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

base

string

No

Symbol of the base asset.

quote

string

No

Symbol of the target asset.

Last updated