Spread Tables Information
This endpoint provides spread table information for cryptocurrencies.
HTTP Request
bash
GET /market/v1/{market}/spread-tablesQuery Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| market | enum | Yes | Market code, see supported values in market enumeration definition |
cURL Example
bash
curl --location --request GET '{$base_url}/market/v1/dcex/spread-tables' \
--header 'X-API-Key: YOUR_API_KEY' \
--header 'X-API-Signature: YOUR_GENERATED_SIGNATURE' \
--header 'X-API-Timestamp: 1746774142003'Success Response Format
Description of data fields in the request response.
| Name | Type | Description |
|---|---|---|
| code | string | Spread table code |
| price_bands | object | Price bands |
price_bands Object Field Description
| Name | Type | Description |
|---|---|---|
| from | decimal | Starting price |
| to | decimal | Ending price |
| minimum_spread | decimal | Minimum spread |
Success Response Example
json
{
"code": 0,
"data": [
{
"code": "01",
"price_bands": [
{
"from": 0.01,
"to": 0.25,
"minimum_spread": 0.001
},
{
"from": 0.25,
"to": 0.5,
"minimum_spread": 0.005
}
]
},
{
"code": "03",
"price_bands": [
{
"from": 0.5,
"to": 9999.95,
"minimum_spread": 0.05
}
]
}
]
}Error Response Example
json
{
"code": 500,
"message": "Internal Service Error",
"details": ""
}
