Public - Currencies
curl --request GET \
--url https://api.ripio.com/trade/public/currenciesimport requests
url = "https://api.ripio.com/trade/public/currencies"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.ripio.com/trade/public/currencies', 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.ripio.com/trade/public/currencies",
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.ripio.com/trade/public/currencies"
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.ripio.com/trade/public/currencies")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ripio.com/trade/public/currencies")
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{
"data": [
{
"active": true,
"can_deposit": true,
"can_withdraw": true,
"code": "BTC",
"id": "e7a079d8-828d-42c8-bf48-8ee3ac1862d1",
"min_withdraw_amount": 0.001,
"name": "Bitcoin",
"needs_block_id_for_tx_sync": true,
"networks": [
{
"code": "bitcoin",
"memo": {
"deposit": false,
"withdrawal": false
},
"tag": {
"deposit": false,
"withdrawal": false
}
}
],
"precision": 8,
"decimal_places": 8,
"countries": [
"BR",
"AR"
],
"logo": {
"svg": "https://cryptocurrency-logos.ripio.com/svg/btc.svg"
}
}
],
"error_code": null,
"message": null
}Public
Currencies
Lists the active currencies available in the platform.
Authorization
- No API key required — this endpoint is public.
GET
/
trade
/
public
/
currencies
Public - Currencies
curl --request GET \
--url https://api.ripio.com/trade/public/currenciesimport requests
url = "https://api.ripio.com/trade/public/currencies"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.ripio.com/trade/public/currencies', 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.ripio.com/trade/public/currencies",
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.ripio.com/trade/public/currencies"
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.ripio.com/trade/public/currencies")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ripio.com/trade/public/currencies")
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{
"data": [
{
"active": true,
"can_deposit": true,
"can_withdraw": true,
"code": "BTC",
"id": "e7a079d8-828d-42c8-bf48-8ee3ac1862d1",
"min_withdraw_amount": 0.001,
"name": "Bitcoin",
"needs_block_id_for_tx_sync": true,
"networks": [
{
"code": "bitcoin",
"memo": {
"deposit": false,
"withdrawal": false
},
"tag": {
"deposit": false,
"withdrawal": false
}
}
],
"precision": 8,
"decimal_places": 8,
"countries": [
"BR",
"AR"
],
"logo": {
"svg": "https://cryptocurrency-logos.ripio.com/svg/btc.svg"
}
}
],
"error_code": null,
"message": null
}⌘I