REST
GET
/api/v1/pairsGet Available Pairs
Retrieve a list of all available trading pairs on the platform, including their details such as minimum and maximum trade sizes.
Auth:Bearer <api_key>
Tags:Pairs
Request
cURL
curl -G https://publicapi.sandbox.hercle.financial/api/v1/pairs \
-H "Authorization: Bearer eyJhb..." \
Headers
| Name | Type | Required | Description |
|---|---|---|---|
| Authorization | string | Yes | Bearer token for authentication |
Response
Success Response Schema
List of available trading pairs
| Field | Type | Description |
|---|---|---|
name | string | Trading pair name (e.g., BTCUSDT) |
asset | string | Base asset of the pair |
currency | string | Quote currency of the pair |
minSize | number | Minimum trade size in base asset |
maxSize | number | Maximum trade size in base asset |
minQuoteSize | number | Minimum trade size in quote currency |
maxQuoteSize | number | Maximum trade size in quote currency |
Responses
List of available trading pairs
200 application/json
[
{
"name": "BTCUSDT",
"asset": "BTC",
"currency": "USDT",
"minSize": 0.0001,
"maxSize": 20,
"minQuoteSize": 15,
"maxQuoteSize": 1200000
},
{
"name": "BTCEUR",
"asset": "BTC",
"currency": "EUR",
"minSize": 0.0001,
"maxSize": 20,
"minQuoteSize": 15,
"maxQuoteSize": 1200000
},
{
"name": "BTCEURC",
"asset": "BTC",
"currency": "EURC",
"minSize": 0.0001,
"maxSize": 7,
"minQuoteSize": 15,
"maxQuoteSize": 300000
}
]API Tester
Test this endpoint directly against the sandbox environment
Get your API key from Hercle Sandbox
https://publicapi.sandbox.hercle.financial/api/v1/pairs