Support
Current values
API Call Counts
50 per API call.
API Plan
gold
Get all crypto symbols in gemini exchange where Close Prices >= 150, 1-day return % < -1
https://www.cryptoquote.io/analytics/v1/?api=screener&exchange=gemini&q=close~gte~200,return_1d~lt~-1&key=your_api_key
The exchange code e.g. gemini. See reference table for list of exchange codes
Example : gemini
Define your filters e.g.
Close Price > 10 : close~gt~10
For details: See Filters
Example : close~10
The common/local symbol/ticker of the symbol
Type: string
The name of the symbol
Type: string
the exchange code e.g. gemini
Type: string
the exchange symbol pairs
Type: string
The open price of the symbol
Type: number
Open Price
Type: number
The high price of the symbol
Type: number
High Price
Type: number
Low Price
Type: number
The low price of the symbol
Type: number
The close price of the symbol
Type: number
Close Price
Type: number
The 1 Day Change ($) of the symbol
Type: number
The 1 Day Change (%) of the symbol
Type: number
{
"status": "ok",
"total_records": 7,
"page_size": 1,
"current_page": 1,
"total_pages": 1,
"results": [
{
"symbol": "AAVEUSDC",
"symbol_name": "Aave/USD Coin",
"exchange": null,
"symbol_pair": null,
"open_price": 116.84,
"high_price": 125.47,
"low_price": 115.8,
"close_price": 122.06,
"volume": 1014,
"chg_1d": 5.54,
"return_1d": 4.754549
},
{
"symbol": "AAVEUSDT_CIX",
"symbol_name": null,
"exchange": null,
"symbol_pair": null,
"open_price": 117.095,
"high_price": 125.323,
"low_price": 115.859,
"close_price": 121.793,
"volume": null,
"chg_1d": 4.858,
"return_1d": 4.154445
},
{
"symbol": "ANYUSDT_CIX",
"symbol_name": null,
"exchange": null,
"symbol_pair": null,
"open_price": 11.874,
"high_price": 12.486,
"low_price": 11.703,
"close_price": 12.274,
"volume": null,
"chg_1d": 0.4,
"return_1d": 3.368705
},
{
"symbol": "ALICEUSDT_CIX",
"symbol_name": null,
"exchange": null,
"symbol_pair": null,
"open_price": 6.158,
"high_price": 6.353,
"low_price": 6.026,
"close_price": 6.071,
"volume": null,
"chg_1d": -0.09,
"return_1d": -1.460802
},
{
"symbol": "ADACRO",
"symbol_name": "Cardano/Crypto.com Coin",
"exchange": null,
"symbol_pair": null,
"open_price": 2.099,
"high_price": 2.11,
"low_price": 2.04,
"close_price": 2.065,
"volume": 204367,
"chg_1d": -0.034,
"return_1d": -1.619819
},
{
"symbol": "API3USDC",
"symbol_name": "API3/USD Coin",
"exchange": null,
"symbol_pair": null,
"open_price": 5.2949,
"high_price": 5.7413,
"low_price": 5.1879,
"close_price": 5.2033,
"volume": 31956,
"chg_1d": -0.1086,
"return_1d": -2.044466
},
{
"symbol": "API3USDT",
"symbol_name": "API3/Tether",
"exchange": null,
"symbol_pair": null,
"open_price": 5.3071,
"high_price": 5.7425,
"low_price": 5.1855,
"close_price": 5.2034,
"volume": 23427,
"chg_1d": -0.1091,
"return_1d": -2.053647
}
]
}
Get all crypto symbols in gemini exchange where Close Prices >= 150, 1-day return % < -1
https://www.cryptoquote.io/analytics/v1/?api=screener&exchange=gemini&q=close~gte~200,return_1d~lt~-1&key=your_api_key
GET https://www.cryptoquote.io/analytics/v1/?api=screener&exchange=gemini&q=close~gte~200,return_1d~lt~-1&key=your_api_key
import requests r = requests.get("https://www.cryptoquote.io/analytics/v1/?api=screener&exchange=gemini&q=close~gte~200,return_1d~lt~-1&key=your_api_key") data = r.json() print(data)
var http = require('http'); var buffer = ''; var options = { host: 'https://www.cryptoquote.io/analytics/v1/?api=screener&exchange=gemini&q=close~gte~200,return_1d~lt~-1&key=your_api_key', port: 80, path: 'https://www.cryptoquote.io/analytics/v1/?api=screener&exchange=gemini&q=close~gte~200,return_1d~lt~-1&key=your_api_key', headers: headers }; callback = function(response) { response.on('data', function (chunk) { buffer += chunk; }); response.on('end', function () { // your code here if you want to use the results ! }); } var req = http.get(options, callback).end();
using (var client = new HttpClient()) { client.BaseAddress = new Uri("{$api_host}"); client.DefaultRequestHeaders.Clear(); //ADD Acept Header to tell the server what data type you want client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json")); //SET Parameters HttpResponseMessage response = await client.GetAsync("https://www.cryptoquote.io/analytics/v1/?api=screener&exchange=gemini&q=close~gte~200,return_1d~lt~-1&key=your_api_key"); if (response.IsSuccessStatusCode) { //Your custom response parser code } }
String uri = "https://www.cryptoquote.io/analytics/v1/?api=screener&exchange=gemini&q=close~gte~200,return_1d~lt~-1&key=your_api_key"; URL url = new URL(uri); HttpURLConnection connection = (HttpURLConnection) url.openConnection(); connection.setRequestMethod("GET"); connection.setRequestProperty("Accept", "application/json"); InputStream xml = connection.getInputStream();
install.packages("RCurl") install.packages("jsonlite")2 - Request the data:
library('RCurl') require('jsonlite') json <- getURL(URLencode('https://www.cryptoquote.io/analytics/v1/?api=screener&exchange=gemini&q=close~gte~200,return_1d~lt~-1&key=your_api_key')) obj <- fromJSON(json)
$url = 'https://www.cryptoquote.io/analytics/v1/?api=screener&exchange=gemini&q=close~gte~200,return_1d~lt~-1&key=your_api_key'; $handle = curl_init(); curl_setopt($handle, CURLOPT_URL, $url); curl_setopt($handle, CURLOPT_RETURNTRANSFER, true); $data = curl_exec($handle); curl_close($handle); //parse your data as per your needs....
var url = 'https://www.cryptoquote.io/analytics/v1/?api=screener&exchange=gemini&q=close~gte~200,return_1d~lt~-1&key=your_api_key'; $.ajax({ url: url, type: "GET", dataType: 'json' }).done(function (data) { console.log(data); });