Crypto Screener

screener


Results
This API provides the ability to search global symbols with your own set of filters ranging from prices, technicals, statistics and much more.

Specification
Endpoint
screener?exchange={exchange}&q={q}

Support
Current values

API Call Counts
50 per API call.

API Plan
gold


Quick Examples

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

Input Parameters
exchange

The exchange code e.g. gemini. See reference table for list of exchange codes

Example : gemini


q

Define your filters e.g.
Close Price > 10 : close~gt~10
For details: See Filters

Example : close~10



Output Descriptions
symbol

The common/local symbol/ticker of the symbol

Type: string


symbol_name

The name of the symbol

Type: string


exchange

the exchange code e.g. gemini

Type: string


symbol_pair

the exchange symbol pairs

Type: string


open_price

The open price of the symbol

Type: number


open_price

Open Price

Type: number


high_price

The high price of the symbol

Type: number


high_price

High Price

Type: number


low_price

Low Price

Type: number


low_price

The low price of the symbol

Type: number


close_price

The close price of the symbol

Type: number


close_price

Close Price

Type: number


chg_1d

The 1 Day Change ($) of the symbol

Type: number


return_1d

The 1 Day Change (%) of the symbol

Type: number



Sample Output
{
  "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
    }
  ]
}

Examples

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
REST
GET https://www.cryptoquote.io/analytics/v1/?api=screener&exchange=gemini&q=close~gte~200,return_1d~lt~-1&key=your_api_key
Python
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)
Node.js
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();
C#
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
	}
}
Java
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();
R
1 - Install package
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)
PHP
$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....
Javascript
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);
});