Get Supported Countries
curl --request GET \
--url https://api-bluvo.com/v0/oauth2/{exchange}/countriesimport requests
url = "https://api-bluvo.com/v0/oauth2/{exchange}/countries"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api-bluvo.com/v0/oauth2/{exchange}/countries', 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://api-bluvo.com/v0/oauth2/{exchange}/countries",
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://api-bluvo.com/v0/oauth2/{exchange}/countries"
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://api-bluvo.com/v0/oauth2/{exchange}/countries")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-bluvo.com/v0/oauth2/{exchange}/countries")
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{
"success": true,
"exchange": "binance-web",
"countries": [
{
"name": "Germany",
"countryCode": "DE"
},
{
"name": "France",
"countryCode": "FR"
}
],
"restrictionType": "allowlist"
}OAuth2
Get Supported Countries
Returns the list of countries where the specified exchange is available for OAuth2 connectivity. For geo-restricted exchanges (e.g. binance-web, bybit-web), the response contains the explicit list of supported countries. For exchanges with no geo-restrictions, an empty array is returned — meaning all countries are supported. Use this endpoint before initiating an OAuth2 flow to verify that the end-user’s country is eligible.
GET
/
v0
/
oauth2
/
{exchange}
/
countries
Get Supported Countries
curl --request GET \
--url https://api-bluvo.com/v0/oauth2/{exchange}/countriesimport requests
url = "https://api-bluvo.com/v0/oauth2/{exchange}/countries"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api-bluvo.com/v0/oauth2/{exchange}/countries', 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://api-bluvo.com/v0/oauth2/{exchange}/countries",
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://api-bluvo.com/v0/oauth2/{exchange}/countries"
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://api-bluvo.com/v0/oauth2/{exchange}/countries")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-bluvo.com/v0/oauth2/{exchange}/countries")
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{
"success": true,
"exchange": "binance-web",
"countries": [
{
"name": "Germany",
"countryCode": "DE"
},
{
"name": "France",
"countryCode": "FR"
}
],
"restrictionType": "allowlist"
}Path Parameters
Exchange identifier.
Available options:
coinbase, kraken, kucoin, local-cex, binance-web, bybit-web Was this page helpful?