Market config

Get all supported trading pairs and assets with their metadata. This endpoint provides essential information for trading including token decimals, symbols, and trading pair configurations.

Get market configuration

get

Get all supported trading pairs and assets with their metadata

Responses
chevron-right
200

OK

application/json
get
/app/market-config
curl --location 'https://api.deltadefi.io/app/market-config'

Response:


Understanding the Response

Assets

Each asset includes:

Field
Type
Description

symbol

string

Human-readable asset name (e.g., ADA, USDM)

unit

string

On-chain asset identifier (policy ID + asset name, or "lovelace" for ADA)

decimals

integer

Number of decimal places for the token on-chain

max_qty_dp

integer

Maximum decimal places allowed for quantity inputs

trading_pairs

array

List of trading pairs this asset is involved in

Trading Pairs

Each trading pair includes:

Field
Type
Description

symbol

string

Trading pair identifier (e.g., "ADAUSDM")

base_token

object

The base asset (what you're buying/selling)

quote_token

object

The quote asset (what you're pricing in)

price_max_dp

integer

Maximum decimal places for price inputs

circle-info

Use this endpoint to dynamically discover available trading pairs and properly format quantities and prices in your trading application.

Last updated