List top 250 coins by market cap
curl --request GET \
--url https://api.rach.finance/v1/market/coins \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.rach.finance/v1/market/coins"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.rach.finance/v1/market/coins', 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.rach.finance/v1/market/coins",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$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.rach.finance/v1/market/coins"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
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.rach.finance/v1/market/coins")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.rach.finance/v1/market/coins")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"as_of": 1751584800,
"coins": [
{
"ath": 73738,
"ath_change_percentage": -15.35,
"ath_date": "2024-03-14T07:10:36.635Z",
"atl": 67.81,
"atl_change_percentage": 91950.24,
"atl_date": "2013-07-06T00:00:00.000Z",
"circulating_supply": 19700000,
"current_price": 62409,
"high_24h": 63000,
"id": "bitcoin",
"image": "https://cdn.rach.finance/coins/bitcoin.png",
"last_updated": "2026-07-04T01:00:00.000Z",
"low_24h": 61500,
"market_cap": 1234567890000,
"market_cap_rank": 1,
"max_supply": 21000000,
"name": "Bitcoin",
"price_change_24h": 800.5,
"price_change_percentage_1h_in_currency": 0.34,
"price_change_percentage_24h": 2.15,
"price_change_percentage_7d_in_currency": 5.12,
"symbol": "btc",
"total_supply": 21000000,
"total_volume": 32000000000
}
],
"limit": 50,
"page": 1,
"total": 250
}Market Data
List top 250 coins by market cap
Returns a paginated list of coins ranked by market capitalisation. Data is served from Rach’s edge cache — no external quota is consumed per merchant request.
GET
/
v1
/
market
/
coins
List top 250 coins by market cap
curl --request GET \
--url https://api.rach.finance/v1/market/coins \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.rach.finance/v1/market/coins"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.rach.finance/v1/market/coins', 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.rach.finance/v1/market/coins",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$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.rach.finance/v1/market/coins"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
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.rach.finance/v1/market/coins")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.rach.finance/v1/market/coins")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"as_of": 1751584800,
"coins": [
{
"ath": 73738,
"ath_change_percentage": -15.35,
"ath_date": "2024-03-14T07:10:36.635Z",
"atl": 67.81,
"atl_change_percentage": 91950.24,
"atl_date": "2013-07-06T00:00:00.000Z",
"circulating_supply": 19700000,
"current_price": 62409,
"high_24h": 63000,
"id": "bitcoin",
"image": "https://cdn.rach.finance/coins/bitcoin.png",
"last_updated": "2026-07-04T01:00:00.000Z",
"low_24h": 61500,
"market_cap": 1234567890000,
"market_cap_rank": 1,
"max_supply": 21000000,
"name": "Bitcoin",
"price_change_24h": 800.5,
"price_change_percentage_1h_in_currency": 0.34,
"price_change_percentage_24h": 2.15,
"price_change_percentage_7d_in_currency": 5.12,
"symbol": "btc",
"total_supply": 21000000,
"total_volume": 32000000000
}
],
"limit": 50,
"page": 1,
"total": 250
}Authorizations
Business API key for server-to-server integrations.
Key prefix determines the environment — no separate flag needed:
test_sk_* = sandbox/testnet, live_sk_* = production/mainnet.
Query Parameters
Required range:
x >= 1Required range:
1 <= x <= 250⌘I

