Highest 24h volume tokens
curl --request GET \
--url https://nexus.gerowallet.io/api/market/prices/top-volume \
--header 'X-Api-Key: <api-key>'import requests
url = "https://nexus.gerowallet.io/api/market/prices/top-volume"
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://nexus.gerowallet.io/api/market/prices/top-volume', 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://nexus.gerowallet.io/api/market/prices/top-volume",
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://nexus.gerowallet.io/api/market/prices/top-volume"
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://nexus.gerowallet.io/api/market/prices/top-volume")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://nexus.gerowallet.io/api/market/prices/top-volume")
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[
{
"assetId": "<string>",
"dex": "<string>",
"assetNameAscii": "<string>",
"priceAda": 123,
"priceUsd": 123,
"priceEur": 123,
"weightedPriceAda": 123,
"weightedPriceUsd": 123,
"quarantined": true,
"tvl": 123,
"volume24h": 123,
"organicVolume24h": 123,
"volume7d": 123,
"updatedAt": "2023-11-07T05:31:56Z",
"firstSeen": "2023-11-07T05:31:56Z",
"source": "<string>",
"name": "<string>",
"ticker": "<string>",
"priceChange1h": 123,
"priceChange24h": 123,
"priceChange7d": 123,
"priceChange30d": 123,
"marketCap": 123,
"marketCapBasis": "<string>",
"fdv": 123,
"totalSupply": 123,
"circulatingSupply": 123,
"liquidity": 123,
"decimals": 123,
"fingerprint": "<string>",
"verified": true,
"isNew": true,
"holders": 123,
"policyLocked": true,
"txnCount24h": 123,
"makerCount24h": 123,
"label": "<string>",
"logo": "<string>"
}
]Cardano Market Data
Highest 24h volume tokens
GET
/
api
/
market
/
prices
/
top-volume
Highest 24h volume tokens
curl --request GET \
--url https://nexus.gerowallet.io/api/market/prices/top-volume \
--header 'X-Api-Key: <api-key>'import requests
url = "https://nexus.gerowallet.io/api/market/prices/top-volume"
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://nexus.gerowallet.io/api/market/prices/top-volume', 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://nexus.gerowallet.io/api/market/prices/top-volume",
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://nexus.gerowallet.io/api/market/prices/top-volume"
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://nexus.gerowallet.io/api/market/prices/top-volume")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://nexus.gerowallet.io/api/market/prices/top-volume")
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[
{
"assetId": "<string>",
"dex": "<string>",
"assetNameAscii": "<string>",
"priceAda": 123,
"priceUsd": 123,
"priceEur": 123,
"weightedPriceAda": 123,
"weightedPriceUsd": 123,
"quarantined": true,
"tvl": 123,
"volume24h": 123,
"organicVolume24h": 123,
"volume7d": 123,
"updatedAt": "2023-11-07T05:31:56Z",
"firstSeen": "2023-11-07T05:31:56Z",
"source": "<string>",
"name": "<string>",
"ticker": "<string>",
"priceChange1h": 123,
"priceChange24h": 123,
"priceChange7d": 123,
"priceChange30d": 123,
"marketCap": 123,
"marketCapBasis": "<string>",
"fdv": 123,
"totalSupply": 123,
"circulatingSupply": 123,
"liquidity": 123,
"decimals": 123,
"fingerprint": "<string>",
"verified": true,
"isNew": true,
"holders": 123,
"policyLocked": true,
"txnCount24h": 123,
"makerCount24h": 123,
"label": "<string>",
"logo": "<string>"
}
]Authorizations
apiKeyAuthbearerAuth
API key (programmatic access — recommended)
Send your API key in the X-Api-Key header. Keys start with nxs_ and are
created in the dashboard (or via POST /api/keys with a session JWT).
Each key is scoped to one chain and one network (for example
CARDANO_MAINNET), fixed at creation time. It cannot query a different network
on the same chain, and it cannot query a different chain at all. A mismatched
network parameter returns 400 Network Mismatch. Create one key per chain
and network under the same account.
This is the credential most integrations should use.
Query Parameters
Required range:
1 <= x <= 100Target Cardano network for per-network market-data instances (e.g. preview). Omit, or pass mainnet, for mainnet.
Response
200 - */*
OK