GET /api/currencies/pairs
curl --request GET \
--url https://public-api.binibit.com/api/currencies/pairsimport requests
url = "https://public-api.binibit.com/api/currencies/pairs"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://public-api.binibit.com/api/currencies/pairs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://public-api.binibit.com/api/currencies/pairs",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://public-api.binibit.com/api/currencies/pairs"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://public-api.binibit.com/api/currencies/pairs")
.asString();require 'uri'
require 'net/http'
url = URI("https://public-api.binibit.com/api/currencies/pairs")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"code": "<string>",
"digitsPrice": 123,
"digitsAmount": 123,
"minQuoteAmount": {}
}Market Data
GET /api/currencies/pairs
Trading pair settings: rounding precision and minimum order amounts.
GET
/
api
/
currencies
/
pairs
GET /api/currencies/pairs
curl --request GET \
--url https://public-api.binibit.com/api/currencies/pairsimport requests
url = "https://public-api.binibit.com/api/currencies/pairs"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://public-api.binibit.com/api/currencies/pairs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://public-api.binibit.com/api/currencies/pairs",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://public-api.binibit.com/api/currencies/pairs"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://public-api.binibit.com/api/currencies/pairs")
.asString();require 'uri'
require 'net/http'
url = URI("https://public-api.binibit.com/api/currencies/pairs")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"code": "<string>",
"digitsPrice": 123,
"digitsAmount": 123,
"minQuoteAmount": {}
}Description
Returns the list of all trading pairs supported by the exchange together with their formatting rules — how many decimal digits to use for price and amount, and the minimum allowed order size. Use this endpoint when:- Validating user input on a trading form (clamp to
digitsPrice/digitsAmount) - Determining whether an order meets the minimum size
- Listing all pairs without their live ticker data
Parameters
This endpoint takes no query parameters.Response
Array of pair-setting objects.string
required
Pair code in
{base}_{target} format, e.g. AAVE_USDT.integer
required
Number of fractional digits to round the price to.
integer
required
Number of fractional digits to round the order amount (base) to.
decimal | null
Minimum order size measured in target (quote) currency.
null if no minimum is configured.Example request
curl https://public-api.binibit.com/api/currencies/pairs
Example response
[
{
"code": "AAVE_USDT",
"digitsPrice": 8,
"digitsAmount": 8,
"minQuoteAmount": null
},
{
"code": "ARB_USDT",
"digitsPrice": 8,
"digitsAmount": 8,
"minQuoteAmount": null
},
{
"code": "ASTER_USDT",
"digitsPrice": 8,
"digitsAmount": 8,
"minQuoteAmount": null
}
]
