Scan Historical Prices

symbol_scan_prices


Results
Scan historical prices with a given filters

Specification
Endpoint
symbol_scan_prices?symbol={symbol}&start_date={start_date}&end_date={end_date}&q={q}

Support
Current and Historical values

API Call Counts
50 per API call.

API Plan
gold



Input Parameters
symbol

The common/local symbol/ticker of the symbol

Example : BTCUSD


start_date

Start Date

Example : 2019-01-01


end_date

End Date

Example : 2019-01-01


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": 2,
  "page_size": 10,
  "current_page": 1,
  "total_pages": 1,
  "results": [
    {
      "symbol": "BTCUSD",
      "symbol_name": "Bitcoin/US Dollar",
      "exchange": "gemini",
      "symbol_pair": "BTC/USD",
      "historical_prices": [
        {
          "date": "2022-02-28",
          "open_price": 37706.32,
          "high_price": 44253.03,
          "low_price": 37468.25,
          "close_price": 43291.49,
          "volume": 2477.4148333,
          "chg_1d": 5585.18,
          "return_1d": 14.81232186337
        },
        {
          "date": "2022-02-04",
          "open_price": 37322.36,
          "high_price": 41800,
          "low_price": 37049.49,
          "close_price": 41603.46,
          "volume": 2307.06993054,
          "chg_1d": 4287.47,
          "return_1d": 11.489632192527
        }
      ]
    }
  ]
}

REST
GET https://www.cryptoquote.io/analytics/v1/?api=symbol_scan_prices&symbol=BTCUSD.gdax&start_date=2019-01-01&end_date=2019-12-31&q=close~gt~1700,return_1d~gt~2&key=your_api_key
Python
import requests 
r = requests.get("https://www.cryptoquote.io/analytics/v1/?api=symbol_scan_prices&symbol=BTCUSD.gdax&start_date=2019-01-01&end_date=2019-12-31&q=close~gt~1700,return_1d~gt~2&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=symbol_scan_prices&symbol=BTCUSD.gdax&start_date=2019-01-01&end_date=2019-12-31&q=close~gt~1700,return_1d~gt~2&key=your_api_key',
	port: 80,
	path: 'https://www.cryptoquote.io/analytics/v1/?api=symbol_scan_prices&symbol=BTCUSD.gdax&start_date=2019-01-01&end_date=2019-12-31&q=close~gt~1700,return_1d~gt~2&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=symbol_scan_prices&symbol=BTCUSD.gdax&start_date=2019-01-01&end_date=2019-12-31&q=close~gt~1700,return_1d~gt~2&key=your_api_key");
	if (response.IsSuccessStatusCode)
	{
		//Your custom response parser code
	}
}
Java
String uri = "https://www.cryptoquote.io/analytics/v1/?api=symbol_scan_prices&symbol=BTCUSD.gdax&start_date=2019-01-01&end_date=2019-12-31&q=close~gt~1700,return_1d~gt~2&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=symbol_scan_prices&symbol=BTCUSD.gdax&start_date=2019-01-01&end_date=2019-12-31&q=close~gt~1700,return_1d~gt~2&key=your_api_key'))
obj <- fromJSON(json)
PHP
$url = 'https://www.cryptoquote.io/analytics/v1/?api=symbol_scan_prices&symbol=BTCUSD.gdax&start_date=2019-01-01&end_date=2019-12-31&q=close~gt~1700,return_1d~gt~2&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=symbol_scan_prices&symbol=BTCUSD.gdax&start_date=2019-01-01&end_date=2019-12-31&q=close~gt~1700,return_1d~gt~2&key=your_api_key';
$.ajax({
		url: url,
		type: "GET",
		dataType: 'json'
}).done(function (data) {
	console.log(data);
});