curl --request GET \
--url http://localhost:2101/v1/pairs \
--header 'Authorization: Bearer <token>'import requests
url = "http://localhost:2101/v1/pairs"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('http://localhost:2101/v1/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_PORT => "2101",
CURLOPT_URL => "http://localhost:2101/v1/pairs",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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 := "http://localhost:2101/v1/pairs"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://localhost:2101/v1/pairs")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:2101/v1/pairs")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"status": "success",
"message": "message for success",
"data": [
{
"id": "BTCNGN",
"base": "BTC",
"base_currency_name": "Bitcoin",
"counter": "BTC",
"counter_currency_name": "Naira",
"type": "crypto",
"buy_price": {
"amount": "100",
"currency": "BTC"
},
"sell_price": {
"amount": "100",
"currency": "BTC"
},
"is_buy_supported": true,
"is_sell_supported": true,
"min_buy_amount": {
"amount": "100",
"currency": "BTC"
},
"min_sell_amount": {
"amount": "100",
"currency": "BTC"
},
"max_buy_amount": {
"amount": "100",
"currency": "BTC"
},
"max_sell_amount": {
"amount": "100",
"currency": "BTC"
},
"base_decimal": "6",
"counter_decimal": "6",
"percentage_change": "100"
}
]
}List trading pairs
Retrieves all available trading pairs with their current rates.
curl --request GET \
--url http://localhost:2101/v1/pairs \
--header 'Authorization: Bearer <token>'import requests
url = "http://localhost:2101/v1/pairs"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('http://localhost:2101/v1/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_PORT => "2101",
CURLOPT_URL => "http://localhost:2101/v1/pairs",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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 := "http://localhost:2101/v1/pairs"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://localhost:2101/v1/pairs")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:2101/v1/pairs")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"status": "success",
"message": "message for success",
"data": [
{
"id": "BTCNGN",
"base": "BTC",
"base_currency_name": "Bitcoin",
"counter": "BTC",
"counter_currency_name": "Naira",
"type": "crypto",
"buy_price": {
"amount": "100",
"currency": "BTC"
},
"sell_price": {
"amount": "100",
"currency": "BTC"
},
"is_buy_supported": true,
"is_sell_supported": true,
"min_buy_amount": {
"amount": "100",
"currency": "BTC"
},
"min_sell_amount": {
"amount": "100",
"currency": "BTC"
},
"max_buy_amount": {
"amount": "100",
"currency": "BTC"
},
"max_sell_amount": {
"amount": "100",
"currency": "BTC"
},
"base_decimal": "6",
"counter_decimal": "6",
"percentage_change": "100"
}
]
}Authorizations
Bearer Authentication
Headers
User profile header
"BUS_YOK8tp5Zga01qOKEsqp07"
Query Parameters
This filter pairs based on the type. fiat filter return pairs where the counter currency-type is a fiat crypto filter return pairs where the counter currency type is digital stablecoin filter return pairs where the base or counter currency is a stablecoin base_crypto filter return pairs where the base currency is digital base_fiat filter return pairs where the base currency is a fiat
fiat, stablecoin, crypto, base_crypto, base_fiat A valid currency
1 - 10"BTC"
A valid currency
1 - 10"BTC"
alphabetical, date_added, market_cap, current_price, price_change, most_bought, most_sold positive, negative, absolute The order to sort the results
asc, desc "asc"
If true, only pairs that has their base as a currency the user is following will be returned. This parameter is only available for authenticated users. If false, all pairs will be returned. Default: false
A valid currency
1 - 10