API Introduction
The ScanExplorer Professional API is a suite of high-performance RESTful JSON endpoints that are specifically designed to meet the mission-critical demands of application developers, data scientists, and enterprise business platforms.
HTTP Status Codes
200 OK - Everything worked as expected.
400 Bad Request - Often missing a required parameter.
401 Unauthorized - No valid API key provided.
402 Request Failed - Parameters were valid but request failed.
404 Not Found - The requested item doesn't exist.
406 Not Acceptable - The requested item not acceptable.
409 Conflict - The requested item conflict with a stored item.
422 Insufficient information supplied - Insufficient information
supplied.
500, 502, 503, 504 Server errors - Something went wrong on FindaTrade's
end.
Errors
ScanExplorer uses conventional HTTP response codes to indicate success or failure of an API request. In general, codes in the 2xx range indicate success, codes in the 4xx range indicate an error that resulted from the provided information (e.g. a required parameter was missing), and codes in the 5xx range indicate an error with FindaTrade's servers.
Not all errors map cleanly onto HTTP response codes, however. When a request is valid but does not complete successfully, we return a 402 error code.
Authentication
Acquiring an API Key
All HTTP requests made against the Professional API must be validated with an API Key. If you don't have an API Key yet visit the Professional API Developer Portal to register for one.
Using Your API Key
You may use any server side programming language that can make HTTP requests to target the
Professional API. All requests should target domain https://scanexplorer.org/paid_api/
.
You can supply your API Key in REST API calls Via a custom header named
ZLOADR-API-KEY
https://scanexplorer.org/paid_api/ cryptocurrency/info?symbol=ETH,BTC&api_key=****
Example Request
Method:
GET /cryptocurrency/info?symbol=ETH,BTC&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-15 13:22:23",
"error_code": 0,
"error_message": "",
"credit_count": "5348",
"valid_till": "2018-09-28"
},
"data": {
"ETH": {
"urls": {
"website": "https://www.ethereum.org/",
"twitter": "https://twitter.com/ethereum",
"reddit": "https://reddit.com/r/ethereum",
"message_board": "https://forum.ethereum.org/",
"announcement": "https://bitcointalk.org/index.php?topic=428589.0",
"chat": [
"https://gitter.im/orgs/ethereum/rooms"
],
"explorer": [
"https://etherscan.io/",
"https://ethplorer.io/",
"https://etherchain.org/"
],
"source_code": "https://github.com/ethereum"
},
"logo": "https://scanexplorer.org/adminpanel/assets/uploaded_files/eth.jpg",
"id": "2",
"name": "Ethereum",
"symbol": "ETH",
"slug": "ethereum",
"date_added": "2015-08-07 00:00:00",
"tags": "NA",
"category": [
"Banking",
"Cryptocurrency",
"Investment",
"Platform",
"Retail",
"Smart Contracte"
]
},
"BTC": {
"urls": {
"website": "https://bitcoin.org/",
"twitter": "@bitcoin",
"reddit": "https://reddit.com/r/bitcoin",
"message_board": "https://bitcointalk.org",
"announcement": null,
"chat": null,
"explorer": [
"https://blockchain.info/",
"https://live.blockcypher.com/btc/",
"https://blockchair.com/bitcoin/blocks"
],
"source_code": "https://github.com/bitcoin/"
},
"logo": "https://scanexplorer.org/adminpanel/assets/uploaded_files/opengraph.png",
"id": "1",
"name": "Bitcoin",
"symbol": "BTC",
"slug": "bitcoin",
"date_added": "2013-04-28 00:00:00",
"tags": "NA",
"category": [
"Banking",
"Business services",
"Cryptocurrency"
]
}
}
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'symbol':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Get metadata
Returns all static metadata for one or more cryptocurrencies including name, symbol, logo, and its various registered URLs.
Input Attributes
https://scanexplorer.org/paid_api/ cryptocurrency/map?symbol=ETH,BTC&api_key=****
Example Request
Method:
GET /cryptocurrency/map?symbol=ETH,BTC&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-15 13:23:37",
"error_code": 0,
"error_message": "",
"credit_count": "5347",
"valid_till": "2018-09-28"
},
"data": [
{
"id": "2",
"name": "Ethereum",
"symbol": "ETH",
"slug": "ethereum",
"is_active": "1",
"first_historical_data": "0000-00-00 00:00:00",
"last_historical_data": "0000-00-00 00:00:00"
},
{
"id": "1",
"name": "Bitcoin",
"symbol": "BTC",
"slug": "bitcoin",
"is_active": "1",
"first_historical_data": "0000-00-00 00:00:00",
"last_historical_data": "0000-00-00 00:00:00"
}
]
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'symbol':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Get ScanExplorer ID map
Returns a paginated list of all cryptocurrencies by ScanExplorer ID. We recommend using this
convenience endpoint to lookup and utilize our unique cryptocurrency symbol
across all endpoints as typical identifiers like ticker symbols can match multiple
cryptocurrencies and change over time. As a convenience you may pass a comma-separated list
of cryptocurrency symbols as symbol
to filter this list to only those you
require.
Input Attributes
Example Request
Method:
GET /cryptocurrency/historical?symbol=ETH,BTC&convert=GBP,EUR&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-15 13:25:01",
"error_code": 0,
"error_message": "",
"credit_count": "5346",
"valid_till": "2018-09-28"
},
"data": [
{
"id": "bitcoin",
"name": "Bitcoin",
"symbol": "BTC",
"slug": "bitcoin",
"rank": "1",
"num_market_pairs": "22",
"circulating_supply": "17118375.0",
"total_supply": "17118375",
"max_supply": "NA",
"last_updated": "2018-09-15 13:00:03",
"quotes": {
"USD": {
"price": "6550",
"volume_24h": "506647526",
"market_cap": "114941414229.1",
"percent_change_1h": "35.54000000",
"percent_change_24h": "0.508",
"percent_change_7d": "-9.46",
"last_updated": "2018-09-15 13:00:03"
},
"GBP": {
"price": 8580.5,
"volume_24h": 663708259.06,
"market_cap": 150573252640.12,
"percent_change_1h": 46.5574,
"percent_change_24h": 0.66548,
"percent_change_7d": -12.3926,
"last_updated": "2018-09-15 13:00:03"
},
"EUR": {
"price": 7663.5,
"volume_24h": 592777605.42,
"market_cap": 134481454648.05,
"percent_change_1h": 41.5818,
"percent_change_24h": 0.59436,
"percent_change_7d": -11.0682,
"last_updated": "2018-09-15 13:00:03"
}
}
},
{
"id": "ethereum",
"name": "Ethereum",
"symbol": "ETH",
"slug": "ethereum",
"rank": "2",
"num_market_pairs": "46",
"circulating_supply": "100337437.0",
"total_supply": "100337437",
"max_supply": "NA",
"last_updated": "2018-09-15 13:00:03",
"quotes": {
"USD": {
"price": "218.43151",
"volume_24h": "573786850",
"market_cap": "23459749045.579",
"percent_change_1h": "0.00115400",
"percent_change_24h": "3.577",
"percent_change_7d": "-18.84",
"last_updated": "2018-09-15 13:00:03"
},
"GBP": {
"price": 286.1452781,
"volume_24h": 751660773.5,
"market_cap": 30732271249.708,
"percent_change_1h": 0.00151174,
"percent_change_24h": 4.68587,
"percent_change_7d": -24.6804,
"last_updated": "2018-09-15 13:00:03"
},
"EUR": {
"price": 255.5648667,
"volume_24h": 671330614.5,
"market_cap": 27447906383.327,
"percent_change_1h": 0.00135018,
"percent_change_24h": 4.18509,
"percent_change_7d": -22.0428,
"last_updated": "2018-09-15 13:00:03"
}
}
}
]
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'symbol':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
List all cryptocurrencies (historical)
Get a paginated list of all cryptocurrencies with (historical) market data. You can configure this call to sort by market cap or another market ranking field. Use the "convert" option to return market values in multiple fiat and cryptocurrency conversions in the same call.
Input Attributes
https://scanexplorer.org/paid_api/ cryptocurrency/latest?symbol=ETH,BTC&convert=GBP,EUR&api_key=****
ORhttps://scanexplorer.org/paid_api/cryptocurrency/latest
Example Request
Method:GET /cryptocurrency/latest?symbol=ETH,BTC&convert=GBP,EUR&api_key=**** HTTP/1.1ORGET /cryptocurrency/latest HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-15 13:25:49",
"error_code": 0,
"error_message": "",
"credit_count": "5345",
"valid_till": "2018-09-28"
},
"data": [
{
"id": "bitcoin",
"name": "Bitcoin",
"symbol": "BTC",
"website_slug": "bitcoin",
"rank": "1",
"circulating_supply": "17118375.0",
"total_supply": "17118375",
"max_supply": "NA",
"quotes": {
"USD": {
"price": "6550",
"volume_24h": "506647526",
"market_cap": "114941414229.1",
"percent_change_1h": "35.54000000",
"percent_change_24h": "0.508",
"percent_change_7d": "-9.46",
"last_updated": "1537016403"
},
"GBP": {
"price": 8580.5,
"volume_24h": 663708259.06,
"market_cap": 150573252640.12,
"percent_change_1h": 46.5574,
"percent_change_24h": 0.66548,
"percent_change_7d": -12.3926,
"last_updated": "1537016403"
},
"EUR": {
"price": 7663.5,
"volume_24h": 592777605.42,
"market_cap": 134481454648.05,
"percent_change_1h": 41.5818,
"percent_change_24h": 0.59436,
"percent_change_7d": -11.0682,
"last_updated": "1537016403"
}
},
"last_updated": "1537016403"
},
{
"id": "ethereum",
"name": "Ethereum",
"symbol": "ETH",
"website_slug": "ethereum",
"rank": "2",
"circulating_supply": "100337437.0",
"total_supply": "100337437",
"max_supply": "NA",
"quotes": {
"USD": {
"price": "218.43151",
"volume_24h": "573786850",
"market_cap": "23459749045.579",
"percent_change_1h": "0.00115400",
"percent_change_24h": "3.577",
"percent_change_7d": "-18.84",
"last_updated": "1537016403"
},
"GBP": {
"price": 286.1452781,
"volume_24h": 751660773.5,
"market_cap": 30732271249.708,
"percent_change_1h": 0.00151174,
"percent_change_24h": 4.68587,
"percent_change_7d": -24.6804,
"last_updated": "1537016403"
},
"EUR": {
"price": 255.5648667,
"volume_24h": 671330614.5,
"market_cap": 27447906383.327,
"percent_change_1h": 0.00135018,
"percent_change_24h": 4.18509,
"percent_change_7d": -22.0428,
"last_updated": "1537016403"
}
},
"last_updated": "1537016403"
}
]
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'symbol':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{ "message" : "Bad Request"}
Example Response
Status: 401
{ "message" : "Unauthorised"}
Example Response
Status: 404
{ "message" : "Not found"}
Example Response
Status: 406
{ "message" : "The requested item not acceptable"}
Example Response
Status: 409
{ "message" : "Conflict"}
Example Response
Status: 422
{ "message" : "Unauthorised"}
List all cryptocurrencies (latest)
Get a paginated list of all cryptocurrencies with latest market data. You can configure this call to sort by market cap or another market ranking field. Use the "convert" option to return market values in multiple fiat and cryptocurrency conversions in the same call.
Input Attributes
https://scanexplorer.org/paid_api/ cryptocurrency/marketpair?symbol=BTC&api_key=****
Example Request
Method:
GET /cryptocurrency/marketpair?symbol=BTC&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-15 13:26:40",
"error_code": 0,
"error_message": "",
"credit_count": "5344",
"valid_till": "2018-09-28"
},
"data": [
{
"id": "bitcoin",
"name": "Bitcoin",
"symbol": "BTC",
"num_market_pairs": "22",
"market_pairs": [
{
"exchange": {
"id": "2823",
"name": "quadrigacx",
"slug": "quadrigacx"
},
"market_pair": "BTC_USD",
"market_pair_base": {
"currency_symbol": "BTC",
"currency_type": "cryptocurrency"
},
"market_pair_quote": {
"currency_symbol": "USD",
"currency_type": "cryptocurrency"
},
"quote": {
"exchange_reported": {
"price": "6576.42",
"volume_24h_base": 7.5027142427035,
"volume_24h_quote": "49341",
"last_updated": "2018-09-15 13:00:03"
},
"USD": {
"price": "6576.42",
"volume_24h_base": 7.5027142427035,
"volume_24h_quote": "49341",
"last_updated": "2018-09-15 13:00:03"
}
}
},
{
"exchange": {
"id": "2826",
"name": "exmo",
"slug": "exmo"
},
"market_pair": "BTC_USD",
"market_pair_base": {
"currency_symbol": "BTC",
"currency_type": "cryptocurrency"
},
"market_pair_quote": {
"currency_symbol": "USD",
"currency_type": "cryptocurrency"
},
"quote": {
"exchange_reported": {
"price": "6550",
"volume_24h_base": 1024.6590839695,
"volume_24h_quote": "6711517",
"last_updated": "2018-09-15 13:00:03"
},
"USD": {
"price": "6550",
"volume_24h_base": 1024.6590839695,
"volume_24h_quote": "6711517",
"last_updated": "2018-09-15 13:00:03"
}
}
}
]
}
]
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'symbol':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Get market pairs (latest)
Lists all market pairs for the specified cryptocurrency with associated stats. Use the "convert" option to return market values in multiple fiat and cryptocurrency conversions in the same call.
Input Attributes
https://scanexplorer.org/paid_api/ cryptocurrency/quotes?symbol=ETH,BTC&convert=GBP,EUR&api_key=****
Example Request
Method:
GET /cryptocurrency/quotes?symbol=ETH,BTC&convert=GBP,EUR&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-15 13:27:21",
"error_code": 0,
"error_message": "",
"credit_count": "5343",
"valid_till": "2018-09-28"
},
"data": [
{
"id": "bitcoin",
"name": "Bitcoin",
"symbol": "BTC",
"website_slug": "bitcoin",
"rank": "1",
"circulating_supply": "17118375.0",
"total_supply": "17118375",
"max_supply": "NA",
"quotes": {
"USD": {
"price": "6550",
"volume_24h": "506647526",
"market_cap": "114941414229.1",
"percent_change_1h": "35.54000000",
"percent_change_24h": "0.508",
"percent_change_7d": "-9.46",
"last_updated": "1537016403"
},
"GBP": {
"price": 8580.5,
"volume_24h": 663708259.06,
"market_cap": 150573252640.12,
"percent_change_1h": 46.5574,
"percent_change_24h": 0.66548,
"percent_change_7d": -12.3926,
"last_updated": "1537016403"
},
"EUR": {
"price": 7663.5,
"volume_24h": 592777605.42,
"market_cap": 134481454648.05,
"percent_change_1h": 41.5818,
"percent_change_24h": 0.59436,
"percent_change_7d": -11.0682,
"last_updated": "1537016403"
}
},
"last_updated": "1537016403"
},
{
"id": "ethereum",
"name": "Ethereum",
"symbol": "ETH",
"website_slug": "ethereum",
"rank": "2",
"circulating_supply": "100337437.0",
"total_supply": "100337437",
"max_supply": "NA",
"quotes": {
"USD": {
"price": "218.43151",
"volume_24h": "573786850",
"market_cap": "23459749045.579",
"percent_change_1h": "0.00115400",
"percent_change_24h": "3.577",
"percent_change_7d": "-18.84",
"last_updated": "1537016403"
},
"GBP": {
"price": 286.1452781,
"volume_24h": 751660773.5,
"market_cap": 30732271249.708,
"percent_change_1h": 0.00151174,
"percent_change_24h": 4.68587,
"percent_change_7d": -24.6804,
"last_updated": "1537016403"
},
"EUR": {
"price": 255.5648667,
"volume_24h": 671330614.5,
"market_cap": 27447906383.327,
"percent_change_1h": 0.00135018,
"percent_change_24h": 4.18509,
"percent_change_7d": -22.0428,
"last_updated": "1537016403"
}
},
"last_updated": "1537016403"
}
]
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Get market quotes
Get the latest market quote for 1 or more cryptocurrencies. Use the "convert" option to return market values in multiple fiat and cryptocurrency conversions in the same call.
Input Attributes
https://scanexplorer.org/paid_api/listings?api_key=*****
Example Request
Method:
GET /listings?api_key=***** HTTP/1.1
Example Response
Status: 200
{
"data": [
{
"id": "1236",
"name": "Pop XBRL",
"symbol": "XBRL",
"website_slug": "pop-xbrl"
},
{
"id": "1271",
"name": "Trusted Health",
"symbol": "TDH",
"website_slug": "trusted-health"
},
{
"id": "1",
"name": "Bitcoin",
"symbol": "BTC",
"website_slug": "bitcoin"
},
Example Response
Status: 200
{
"success" : 0,
"error" : 1,
"message" : "Error Message"
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Listing
Get a list of all cryptocurrencies with latest market data.
https://scanexplorer.org/paid_api/ticker/btc?api_key=your api key
Example Request
Method:
GET /ticker/[symbol]?api_key=your api key HTTP/1.1
Example Response
Status: 200
{
"data": {
"id": "bitcoin",
"name": "Bitcoin",
"symbol": "BTC",
"website_slug": "bitcoin",
"rank": "1",
"circulating_supply": "17118375.0",
"total_supply": "17118375",
"max_supply": "NA",
"quotes": {
"USD": {
"price": "6550",
"volume_24h": "506647526",
"market_cap": "114941414229.1",
"percent_change_1h": "35.54000000",
"percent_change_24h": "0.508",
"percent_change_7d": "-9.46",
"last_updated": "1537016403"
}
},
"last_updated": "1537016403"
},
"metadata": {
"timestamp": 1537018174,
"error": ""
}
}
Example Response
Status: 200
{
"data": [],
"metadata": {
"timestamp": 1534778727,
"error": "Invalid Currency"
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Ticker
Lists all market pairs for the specified cryptocurrency with associated stats. Use the "convert" option to return market values in multiple fiat and cryptocurrency conversions in the same call.
Input Attributes
https://scanexplorer.org/paid_api/ due_diligence/token_score?symbol=BTC,ETH&api_key=****
Example Request
Method:
GET /due_diligence/token_score?symbol=BTC,ETH&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-15 13:30:19",
"error_code": 0,
"error_message": "",
"credit_count": "5342",
"valid_till": "2018-09-28"
},
"data": {
"BTC": {
"score": {
"score": "165",
"out_of_score": "526"
},
"id": "1",
"name": "Bitcoin",
"symbol": "BTC"
},
"ETH": {
"score": {
"score": "155",
"out_of_score": "526"
},
"id": "2",
"name": "Ethereum",
"symbol": "ETH"
}
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Get Due Diligence score for cryptocurrencies
Returns all static Due Diligence score for one or more cryptocurrencies including name, symbol,id and its various registered URLs.
Input Attributes
https://scanexplorer.org/paid_api/ due_diligence/ico_score?symbol=DOCT,LOK&api_key=****
Example Request
Method:
GET /due_diligence/ico_score?symbol=DOCT,LOK&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-15 13:31:18",
"error_code": 0,
"error_message": "",
"credit_count": "5341",
"valid_till": "2018-09-28"
},
"data": {
"DOCT": {
"score": {
"score": "1383",
"out_of_score": "1511"
},
"id": "32284",
"name": "DocTailor",
"symbol": "DOCT"
},
"LOK": {
"score": {
"score": "45",
"out_of_score": "1511"
},
"id": "21087",
"name": "LookRev",
"symbol": "LOK"
}
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Get Due Diligence score for ICOs
Returns all static Due Diligence score for one or more ICOs including name, symbol,id and its various registered URLs.
Input Attributes
https://scanexplorer.org/paid_api/ due_diligence/exchanges_score?name=huobi,okex&api_key=****
Example Request
Method:
GET due_diligence/exchanges_score?name=huobi,okex&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-15 13:31:56",
"error_code": 0,
"error_message": "",
"credit_count": "5340",
"valid_till": "2018-09-28"
},
"data": {
"huobi": {
"score": {
"score": "207",
"out_of_score": "937"
},
"id": "276",
"name": "huobi"
},
"okex": {
"score": {
"score": "46",
"out_of_score": "937"
},
"id": "210",
"name": "okex"
}
}
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'Name':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Get Due Diligence score for exchanges
Returns all static Due Diligence score for one or more exchanges including name,id and its various registered URLs.
https://scanexplorer.org/paid_api/due_diligence/token_score?symbol=BTC,ETH&api_key=****
Example Request
Method:
GET /due_diligence/token_score?symbol=BTC,ETH&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-15 13:30:19",
"error_code": 0,
"error_message": "",
"credit_count": "5342",
"valid_till": "2018-09-28"
},
"data": {
"BTC": {
"score": {
"score": "165",
"out_of_score": "526"
},
"id": "1",
"name": "Bitcoin",
"symbol": "BTC"
},
"ETH": {
"score": {
"score": "155",
"out_of_score": "526"
},
"id": "2",
"name": "Ethereum",
"symbol": "ETH"
}
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Get Due Diligence score for cryptocurrencies
Returns all static Due Diligence score for one or more cryptocurrencies including name, symbol,id and its various registered URLs.
Input Attributes
https://scanexplorer.org/paid_api/due_diligence/ico_score?symbol=DOCT,LOK&api_key=****
Example Request
Method:
GET /due_diligence/ico_score?symbol=DOCT,LOK&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-15 13:31:18",
"error_code": 0,
"error_message": "",
"credit_count": "5341",
"valid_till": "2018-09-28"
},
"data": {
"DOCT": {
"score": {
"score": "1383",
"out_of_score": "1511"
},
"id": "32284",
"name": "DocTailor",
"symbol": "DOCT"
},
"LOK": {
"score": {
"score": "45",
"out_of_score": "1511"
},
"id": "21087",
"name": "LookRev",
"symbol": "LOK"
}
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Get Due Diligence score for ICOs
Returns all static Due Diligence score for one or more ICOs including name, symbol,id and its various registered URLs.
Input Attributes
https://scanexplorer.org/paid_api/due_diligence/exchanges_score?name=huobi,okex&api_key=****
Example Request
Method:
GET due_diligence/exchanges_score?name=huobi,okex&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-15 13:31:56",
"error_code": 0,
"error_message": "",
"credit_count": "5340",
"valid_till": "2018-09-28"
},
"data": {
"huobi": {
"score": {
"score": "207",
"out_of_score": "937"
},
"id": "276",
"name": "huobi"
},
"okex": {
"score": {
"score": "46",
"out_of_score": "937"
},
"id": "210",
"name": "okex"
}
}
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'Name':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Get Due Diligence score for exchanges
Returns all static Due Diligence score for one or more exchanges including name,id and its various registered URLs.
https://scanexplorer.org/paid_api/due_diligence/token_report?symbol=BTC,XCP&api_key=****
Example Request
Method:
GET due_diligence/token_report?symbol=BTC,XCP&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-24 16:48:40",
"error_code": 0,
"error_message": "",
"credit_count": 0
},
"data": {
"BTC": [
{
"report": {
"question": " Is the cryptocurrency listed on Huobi?",
"answer": "yes",
"note": "",
"subject": "Exchange"
},
"id": "1",
"name": "Bitcoin",
"symbol": "BTC"
},
{
"report": {
"question": " Is the cryptocurrency listed on LBank?",
"answer": "yes",
"note": "Daily volume from $100 million to $150 million trading daily",
"subject": "Exchange"
},
"id": "1",
"name": "Bitcoin",
"symbol": "BTC"
},
{
"report": {
"question": " Is the cryptocurrency listed on OKEx?",
"answer": "yes",
"note": "Daily volume from $200 million to $500 million trading daily",
"subject": "Exchange"
},
"id": "1",
"name": "Bitcoin",
"symbol": "BTC"
},
{
"report": {
"question": "Did the cryptocurrency do an AirDrop?",
"answer": "yes",
"note": "",
"subject": "Tokens "
},
"id": "1",
"name": "Bitcoin",
"symbol": "BTC"
},
]
}
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'symbol':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Get Due Diligence Report for Tokens
Returns all static Due Diligence report for one or more Tokens including id,name,symbol and its various registered URLs.
https://scanexplorer.org/paid_api/due_diligence/ico_report?symbol=DOCT,DGZ&api_key=****
Example Request
Method:
GET due_diligence/ico_report?symbol=DOCT,DGZ&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-24 10:14:52",
"error_code": 0,
"error_message": "",
"credit_count": 0
},
"data": {
"DGZ": [
{
"report": {
"question": "Does your ICO have a set date for launch?",
"answer": "yes",
"note": "",
"subject": "Platform"
},
"id": "38",
"name": "Dogezer",
"symbol": "DGZ"
},
{
"report": {
"question": "Does your ICO platform have a working prototype complete?",
"answer": "no",
"note": "",
"subject": "MVP"
},
"id": "38",
"name": "Dogezer",
"symbol": "DGZ"
},
{
"report": {
"question": "Will the ICO project be launching before 2 months?",
"answer": "yes",
"note": "",
"subject": "Platform"
},
"id": "38",
"name": "Dogezer",
"symbol": "DGZ"
}
]
}
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'symbol':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Get Due Diligence Report for ICOs
Returns all static Due Diligence report for one or more ICOs including id,name,symbol and its various registered URLs.
https://scanexplorer.org/paid_api/due_diligence/exchanges_report?name=okex&api_key=****
Example Request
Method:
GET due_diligence/exchanges_report?name=okex&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-27 16:20:36",
"error_code": 0,
"error_message": "",
"credit_count": 0
},
"data": {
"okex": [
{
"report": {
"question": "Does the exchange accept Paypal?",
"answer": "no",
"note": "",
"subject": "Transactions"
},
"id": "210",
"name": "okex"
},
{
"report": {
"question": "Does the exchange accept Wire Transfer?",
"answer": "no",
"note": "",
"subject": "Transactions"
},
"id": "210",
"name": "okex"
},
{
"report": {
"question": "Is the volume of the exchange above $20 million?",
"answer": "yes",
"note": "More then $20 million volume trading daily for okex",
"subject": "Volume"
},
"id": "210",
"name": "okex"
}
]
}
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'symbol':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Get Due Diligence Report for exchanges
Returns all static Due Diligence report for one or more exchanges including id,name and its various registered URLs.
https://scanexplorer.org/paid_api/convert/convert_from?from=BTC&to=ETH,LTC&amount=1&api_key=****
Example Request
Method:
GET convert/convert_from?from=BTC&to=ETH,LTC&amount=1&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-04 12:33:54",
"error_code": 0,
"error_message": "",
"credit_count": "5835",
"valid_till": "2018-09-28"
},
"data": {
"convert": {
"from": "BTC",
"amount": "100"
},
"to": [
{
"quotecurrency": "ETH",
"mid": 2547.0391237888
},
{
"quotecurrency": "LTC",
"mid": 10785.193355452
}
]
}
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'symbol':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Convert a crypto currency amount from multiple other currencies
Returns all static crypto currency Convert for one or more currency including to,from and its various registered URLs.
For example
-
if you have 100 BTC , how much ETH and LTC will that get you.
https://scanexplorer.org/paid_api/convert/convert_to?to=BTC&from=ETH,LTC&amount=100&api_key=****
Example Request
Method:
GET convert/convert_to?to=BTC&from=ETH,LTC&amount=100&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-04 12:43:01",
"error_code": 0,
"error_message": "",
"credit_count": "5834",
"valid_till": "2018-09-28"
},
"data": {
"convert": {
"to": "BTC",
"amount": "100"
},
"from": [
{
"quotecurrency": "ETH",
"mid": 2547.0391237888
},
{
"quotecurrency": "LTC",
"mid": 10785.193355452
}
]
}
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'symbol':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Convert a crypto currency amount from multiple other currencies
Returns all static crypto currency Convert for one or more currency including to,from and its various registered URLs.
For example
-
how much ETH and LTC do you need to get 100 BTC.
Example Request
Method:
GET historic_rate/?from=BTC&date=2018-09-05&to=ETH,LTC&amount=100&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-06 19:22:34",
"error_code": 0,
"error_message": "",
"credit_count": "5728",
"valid_till": "2018-09-28"
},
"convert": {
"from": "BTC",
"amount": "100",
"date": "2018-09-05"
},
"to": [
{
"quotecurrency": "ETH",
"mid": 2870.7469166742
},
{
"quotecurrency": "LTC",
"mid": 11744.905442797
}
]
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'symbol':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
The Currency Data API provides you with access to daily historical rates
When retrieving historical rates through our Currency Data API, you would specify your requested currencies along with the date Historical rates are available with all API packages. The endpoint returns the historic rate for a single base currency and one or more counter currencies.
For example
-
how much ETH and LTC do you need to get 100 BTC at 2018-09-05.
Example Request
Method:
GET historic_rate/period/?from=BTC&to=ETH&amount=100&start_date=2018-09-04&end_date=2018-09-07&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-08 16:31:27",
"error_code": 0,
"error_message": "",
"credit_count": "5623",
"valid_till": "2018-09-28"
},
"convert": {
"from": "BTC",
"amount": "100"
},
"to": {
"ETH": [
{
"mid": 2394.8220064725,
"date": "2018-09-04"
},
{
"mid": 2872.5409836066,
"date": "2018-09-05"
},
{
"mid": 2041.25,
"date": "2018-09-06"
}
]
}
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'from':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Returns monthly rates for a single base currency and one or more counter currencies for a year and optionally month.
For example
-
what is the price of 1 BTC to USDT between 2018-08-05 to 2018-09-05
Example Request
Method:
GET monthly_average/?from=BTC&to=USDT,ETH&start_date=2018-08-05&end_date=2018-09-05&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-07 15:49:50",
"error_code": 0,
"error_message": "",
"credit_count": "5647",
"valid_till": "2018-09-28"
},
"convert": {
"from": "BTC",
"amount": 1
},
"to": {
"USDT": [
{
"monthlyAverage": 7017.5484,
"month": 1,
"daysInMonth": 30
}
],
"ETH": [
{
"monthlyAverage": 22.023901456627,
"month": 1,
"daysInMonth": 30
}
]
}
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'from':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Returns monthly average rates for a single base currency and one or more counter currencies for a year and optionally month.
For example
-
what is the average price of 1 BTC to USDT between 2018-08-05 to 2018-09-05
https://scanexplorer.org/paid_api/exchange/info?name=Binance,okex&api_key=****
Example Request
Method:
GET exchange/info?name=Binance,okex&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-08 16:10:46",
"error_code": 0,
"error_message": "",
"credit_count": "5626",
"valid_till": "2018-09-28"
},
"data": {
"Binance": [
{
"url": {
"website": "https://www.binance.com",
"twitter": "https://twitter.com/binance",
"blog": "https://medium.com/@binance",
"chat": "https://t.me/binanceexchange",
"fee": "https://www.binance.com/fees.html"
},
"logo": "https://scanexplorer.org/img/exchanges/5a5479c448383-binance.png",
"id": "187",
"name": "Binance",
"slug": "binance"
}
]
}
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'name':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Returns all static metadata for one or more exchanges including logo and homepage URL.
Input Attributes
https://scanexplorer.org/paid_api/exchange/listings_latest?name=Binance&api_key=****
Example Request
Method:
GET exchange/listings_latest?name=Binance&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-09 06:23:02",
"error_code": 0,
"error_message": "",
"credit_count": "5593",
"valid_till": "2018-09-28"
},
"data": {
"Binance": {
"id": "187",
"name": "Binance",
"slug": "binance",
"num_market_pairs": "21",
"last_updated": "09/09/2018 06:00:04 AM UTC"
},
"quote": [
{
"BTC": {
"volume_24h": 67944.12,
"last_updated": "09/09/2018 06:00:04 AM UTC"
},
"USD": {
"volume_24h": "437902586",
"last_updated": "09/09/2018 06:00:04 AM UTC"
}
}
]
}
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'name':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Returns a paginated list of all cryptocurrency exchanges with 24 hour volume.
Input Attributes
https://scanexplorer.org/paid_api/exchange/market-pairs_latest/?name=Binance&api_key=****
Example Request
Method:
GET exchange/market-pairs_latest/?name=Binance&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-11 04:09:48",
"error_code": 0,
"error_message": "",
"credit_count": "5483",
"valid_till": "2018-09-28"
},
"Binance": {
"id": "187",
"name": "Binance",
"slug": "Binance",
"num_market_pairs": "21"
},
"data": [
{
"market_pairs": {
"market_pair": "XRP_BTC",
"market_pair_base": {
"currency_symbol": "XRP",
"currency_type": "cryptocurrency"
},
"market_pair_quote": {
"currency_symbol": "BTC",
"currency_type": "cryptocurrency"
}
},
"quote": {
"exchange_reported": {
"price": "0.2774917757",
"volume_24h_base": 47413156.540625,
"volume_24h_quote": "13156761",
"last_updated": "09/11/2018 03:30:05 AM UTC"
}
},
"USD": {
"price": "0.28124696277672",
"volume_24h": "13156761",
"last_updated": "09/11/2018 03:30:05 AM UTC"
}
}
]
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'name':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Returns a list of active market pairs for an exchange
Input Attributes
https://scanexplorer.org/paid_api/exchange/map?name=Binance&api_key=****
Example Request
Method:
GET exchange/map?name=Binance&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-11 04:16:59",
"error_code": 0,
"error_message": "",
"credit_count": "5479",
"valid_till": "2018-09-28"
},
"data": {
"Binance": [
{
"name": "Binance",
"slug": "Binance",
"is_active": null,
"first_historical_data": null,
"last_historical_data": null
}
]
}
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'name':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Returns a paginated list of all cryptocurrency exchanges
Input Attributes
https://scanexplorer.org/paid_api/exchange/quotes_historical/?name=zebpay&api_key=****
Example Request
Method:
GET exchange/quotes_historical/?name=zebpay&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-11 13:14:31",
"error_code": 0,
"error_message": "",
"credit_count": "5470",
"valid_till": "2018-09-28"
},
"zebpay": {
"id": "239",
"name": "zebpay",
"slug": "zebpay",
"num_market_pairs": "13"
},
"data": [
{
"quotes": {
"timestamp": "2018-09-11",
"quote": {
"USD": {
"volume_24h": "32088",
"timestamp": "2018-09-11"
}
}
}
},
{
"quotes": {
"timestamp": "2018-09-10",
"quote": {
"USD": {
"volume_24h": "34137",
"timestamp": "2018-09-10"
}
}
}
},
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'name':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Returns an interval of historic quotes for any exchange based on time and interval parameters.
Input Attributes
https://scanexplorer.org/paid_api/exchange/quotes_latest/?name=zebpay&api_key=****
Example Request
Method:
GET exchange/quotes_latest/?name=zebpay&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-11 14:55:53",
"error_code": 0,
"error_message": "",
"credit_count": "5460",
"valid_till": "2018-09-28"
},
"zebpay": {
"id": "239",
"name": "zebpay",
"slug": "zebpay",
"num_market_pairs": "13",
"last_updated": "09/10/2018 05:30:03 AM UTC"
},
"data": [
{
"quote": {
"BTC": {
"volume_24h": 4.45,
"last_updated": "09/10/2018 05:30:03 AM UTC"
},
"EUR": {
"currency_symbol": 24480.34,
"currency_type": "09/10/2018 05:30:03 AM UTC"
},
"LTC": {
"currency_symbol": 515,
"currency_type": "09/10/2018 05:30:03 AM UTC"
},
"USD": {
"currency_symbol": "28642",
"currency_type": "09/10/2018 05:30:03 AM UTC"
}
}
}
]
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'name':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Returns latest 24 hour volume quote for 1 or more exchanges
Input Attributes
https://scanexplorer.org/paid_api/exchange/listings_historical/?name=zebpay&api_key=****
Example Request
Method:
GET exchange/listings_historical/?name=zebpay&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-12 16:17:35",
"error_code": 0,
"error_message": "",
"credit_count": "5447",
"valid_till": "2018-09-28"
},
"zebpay": {
"id": "239",
"name": "zebpay",
"slug": "zebpay",
"num_market_pairs": "13",
"timestamp": "09/10/2018 05:30:03 AM UTC",
"quote": {
"timestamp": "09/10/2018 05:30:03 AM UTC",
"volume_24h": "50549",
"volume_7d": "386131",
"volume_30d": "2148744788",
"percent_change_volume_24h": null,
"percent_change_volume_7d": null,
"percent_change_volume_30d": null
}
}
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'name':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Get a paginated list of one or more exchanges with historical market data for a given point in time
Input Attributes
https://scanexplorer.org/paid_api/live_news/subject/?name=Market%20Caps&api_key=****
Example Request
Method:
GET live_news/subject/?name=Market%20Caps&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-15 12:29:42",
"error_code": 0,
"error_message": "",
"credit_count": "5357",
"valid_till": "2018-09-28"
},
"BTC": [
{
"Market Caps": {
"news": "Bitcoin (BTC) Hits to $6,649 – MarketCap Makes It to $114,943,425,590",
"symbol": "BTC",
"subject": "Market Caps",
"last_updated": "09/14/2018 06:43:24 AM UTC"
}
},
"Market Caps": {
"news": "300 Token (300) Drops to $443 – MarketCap Makes It to $132,925",
"symbol": "300",
"subject": "Market Caps",
"category": "cryptocurrency",
"last_updated": "09/14/2018 06:43:24 AM UTC"
},
{
"Market Caps": {
"news": "300 Token(300) Total Cap at $132,925 as Price Down to $443 – Down -0.09% in the Last 24 Hours",
"symbol": "300",
"subject": "Market Caps",
"category": "cryptocurrency",
"last_updated": "09/14/2018 06:37:34 AM UTC"
}
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'name':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Returns all cryptocurrency live news related market cap subject
Input Attributes
https://scanexplorer.org/paid_api/live_news/subject/?name=Trade Volume&api_key=****
Example Request
Method:
GET /live_news/subject/?name=Trade Volume&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-15 12:29:42",
"error_code": 0,
"error_message": "",
"credit_count": "5357",
"valid_till": "2018-09-28"
},
"BTC": [
{
"Trade Volume": {
"news": "Bitcoin(BTC) Crypto Volume at $650,013,330 as Price Hits $6,649 up 0.51 Since Yesterday",
"symbol": "BTC",
"subject": "Trade Volume",
"last_updated": "09/14/2018 06:38:46 AM UTC"
},
},
{
"Trade Volume": {
"news": "1x(BTC) Cryptocurrency Hits $6,649 24-hour Volume Makes It to $650,013,330",
"symbol": "BTC",
"subject": "Trade Volume",
"last_updated": "09/14/2018 06:38:37 AM UTC"
},
},
{
"Trade Volume": {
"news": "Bitcoin(BTC) 24 Hour Volume Reaches $650,013,330 as Price up to $6,649",
"symbol": "BTC",
"subject": "Trade Volume",
"last_updated": "09/14/2018 06:38:41 AM UTC"
},
},
{
"Trade Volume": {
"news": "Bitcoin 24_hour trade volume exceeds 650.01 (million) up 0.51 % from yesterday - Keep up to date on coin & tokens via a ScanExplorer Wallet",
"symbol": "BTC",
"subject": "Trade Volume",
"last_updated": "09/14/2018 06:38:29 AM UTC"
}
},
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'name':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Returns all cryptocurrency live news related "Trade Volume" subject
Input Attributes
https://scanexplorer.org/paid_api/live_news/subject/?name=Due Diligence&api_key=****
Example Request
Method:
GET /live_news/subject/?name=Due Diligence&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-15 12:40:08",
"error_code": 0,
"error_message": "",
"credit_count": "5354",
"valid_till": "2018-09-28"
},
{
"Due Diligence": {
"news": "Bitcoin(BTC) has a cryptocurrency due diligence score of 165 out of 526 - Read the report and learn the crypto’s strong points here https://scanexplorer.org",
"symbol": "BTC",
"subject": "Due Diligence",
"last_updated": "09/14/2018 07:05:52 AM UTC"
}
},
{
"Due Diligence": {
"news": "Ethereum(ETH) has a cryptocurrency due diligence score of 155 out of 526 - Read the report and learn the crypto’s strong points here https://scanexplorer.org",
"symbol": "ETH",
"subject": "Due Diligence",
"last_updated": "09/14/2018 07:05:52 AM UTC"
}
},
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'name':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Returns all cryptocurrency live news related "Due Diligence" subject
Input Attributes
https://scanexplorer.org/paid_api/live_news/subject/?name=Exchanges&api_key=****
Example Request
Method:
GET /live_news/subject/?name=Exchanges&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-15 12:50:34",
"error_code": 0,
"error_message": "",
"credit_count": "5352",
"valid_till": "2018-09-28"
},
"huobi": [
{
"Exchanges": {
"news": "huobi is the biggest exchange as of 09/14/2018 02:15:10 PM UTC with a 24hr trade volume above 652.14 (million)",
"symbol": "huobi",
"subject": "Exchanges",
"category": "Exchange",
"last_updated": "09/14/2018 02:15:10 PM UTC"
}
}
]
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'name':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Returns all cryptocurrency live news related "Exchanges" subject
Input Attributes
https://scanexplorer.org/paid_api/live_news/subject/?name=Arbitrage Trading&api_key=****
Example Request
Method:
GET /live_news/subject/?name=Arbitrage Trading&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-15 12:50:34",
"error_code": 0,
"error_message": "",
"credit_count": "5352",
"valid_till": "2018-09-28"
},
"LTC": [
{
"Arbitrage Trading": {
"news": "The cheapest place to buy Litecoin right now is currently on lbank - Open a ScanExplorer Wallet for up to date trading information!",
"symbol": "LTC",
"subject": "Arbitrage Trading",
"category": "Exchange",
"last_updated": "09/15/2018 10:00:18 AM UTC"
}
},
{
"Arbitrage Trading": {
"news": "The best place to sell Litecoin is on Binance right now at $72.24 up 6.38% from this 09/15/2018 12:00:06 PM UTC yesterday - Trade with expertise on ScanExplorer.com",
"symbol": "LTC",
"subject": "Arbitrage Trading",
"category": "Exchange",
"last_updated": "09/15/2018 12:06:58 PM UTC"
}
}
]
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'name':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Returns all cryptocurrency live news related "Arbitrage Trading" subject
Input Attributes
https://scanexplorer.org/paid_api/live_news/subject/?name=Price Posts&api_key=****
Example Request
Method:
GET /live_news/subject/?name=Price Posts&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-15 12:50:34",
"error_code": 0,
"error_message": "",
"credit_count": "5352",
"valid_till": "2018-09-28"
},
"BTC": [
{
"Price Posts": {
"news": "The price of Bitcoin(BTC) is up (0.51)% from yesterday and may continue to rise - gain greater insight into crypto’s at ScanExplorer.com",
"symbol": "BTC",
"subject": "Price Posts",
"last_updated": "09/16/2018 11:37:14 AM UTC"
}
},
{
"Price Posts": {
"news": "Bitcoin (BTC) is trading at $(6499.49429) against the dollar, a (-0.66)% change since this time yesterday. The Bitcoin cost for BTC is at 1.00000 BTC.",
"symbol": "BTC",
"subject": "Price Posts",
"last_updated": "09/17/2018 05:57:51 AM UTC"
}
}
],
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'name':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Returns all cryptocurrency live news related "Price Posts" subject
Input Attributes
https://scanexplorer.org/paid_api/live_news/subject/?name=Trade Posts&api_key=****
Example Request
Method:
GET /live_news/subject/?name=Trade Posts&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-15 12:50:34",
"error_code": 0,
"error_message": "",
"credit_count": "5352",
"valid_till": "2018-09-28"
},
"BTC": [
{
"Trade Posts": {
"news": "If you bought Bitcoin(BTC) this morning (09/15/2018) GMT, you would have made 0.51% on your investment - Buy ETH via ScanExplorer’s multi-currency wallet today!",
"symbol": "BTC",
"subject": "Trade Posts",
"last_updated": "09/16/2018 10:25:28 AM UTC"
}
},
{
"Trade Posts": {
"news": "Fun fact! Bitcoin(BTC) traded a recored (22) times in the space of 24 hrs - Gain trading insights via the ScanExplorer platform!",
"symbol": "BTC",
"subject": "Trade Posts",
"last_updated": "09/16/2018 04:48:22 PM UTC"
}
}
],
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'name':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Returns all cryptocurrency live news related "Trade Posts" subject
Input Attributes
https://scanexplorer.org/paid_api/live_news/subject/?name=Historical Updates&api_key=****
Example Request
Method:
GET /live_news/subject/?name=Historical Updates&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-15 12:50:34",
"error_code": 0,
"error_message": "",
"credit_count": "5352",
"valid_till": "2018-09-28"
},
"BTC": [
{
"Historical Updates": {
"news": "If you brought Bitcoin(BTC) at this 10/30/2017 time last year, you would have made 5.79% profit - Buy & Sell Bitcoin via ScanExplorer!",
"symbol": "BTC",
"subject": "Historical Updates",
"last_updated": "09/16/2018 08:23:13 AM UTC"
}
},
{
"Historical Updates": {
"news": "If Bitcoin reaches 6532.13 it would have been 149th time it has done this in 2018 so far - Buy & Sell Bitcoin via ScanExplorer!",
"symbol": "BTC",
"subject": "Historical Updates",
"last_updated": "09/16/2018 07:25:36 AM UTC"
}
}
],
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'name':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Returns all cryptocurrency live news related "Historical Updates" subject
Input Attributes
https://scanexplorer.org/paid_api/icos/all?api_key=****
Example Request
Method:
GET/icos/all?api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-19 19:03:15",
"error_code": 0,
"error_message": "",
"credit_count": "5254",
"valid_till": "2018-09-28"
},
"data": {
"DocTailor": [
{
"data": {
"icos": "32284",
},
"results": {
"id": "32284",
"name": "DocTailor",
"url": "https://scanexplorer.org/ico/32284/DocTailor.html",
"logo": "https://scanexplorer.org/0DIR/img/1521561760.png",
"description": "DocTailor's mission is to lay the foundation to enable non-crypto businesses to access the multi-trillion dollar cryptocurrency economy; at the same time, pave the way for organizations and individuals, to create self automated tailor-made agreements and smart contracts to assist in their acceleration of crypto business deals.",
"likes": "548",
"dislikes": "3",
"premium": 1,
"raised": 0
},
"dates": {
"icoStart": "03/31/2018 07:16:00",
"icoEnd": "05/31/2018 07:17:00"
}
}
],
}
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'name':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Returns some basic information about the all ICOs.
Input Attributes
https://scanexplorer.org/paid_api/icos/filters?api_key=****
Example Request
Method:
GET/icos/filters?api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-19 19:03:15",
"error_code": 0,
"error_message": "",
"credit_count": "5254",
"valid_till": "2018-09-28"
},
"data": {
"DocTailor": [
{
"data": {
"icos": "32284"
},
"filters": {
"ico_url": "https://scanexplorer.org/ico/32284/DocTailor.html",
"category": "Art,Banking,Business services,Charity,Cryptocurrency,Electronics,Entertainment,Investment,Manufacturing,Platform,Retail,Big Data,Legal",
"platforms": "ECR20",
"Features": "Bonus available,Expert ratings",
"Country": "United Kingdom",
"Registration": "kyc and whitelist",
"restricted area": "Afghanistan,China,U.S.,Canada",
"Accepted currencies": "BTC,ETH",
"Trading on": "EtherDelta",
"Whitelistkyc": "kyc and whitelist",
"likes": "548",
"dislike": "3"
}
}
],
}
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'name':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
https://scanexplorer.org/paid_api/icos/trending?api_key=****
Example Request
Method:
GET/icos/trending?api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-19 19:03:15",
"error_code": 0,
"error_message": "",
"credit_count": "5254",
"valid_till": "2018-09-28"
},
"data": {
"DocTailor": [
{
"results": {
"id": "32284",
"name": null,
"url": "https://scanexplorer.org/ico/32284/DocTailor.html",
"logo": "https://scanexplorer.org/0DIR/img/1521561760.png",
"description": "DocTailor's mission is to lay the foundation to enable non-crypto businesses to access the multi-trillion dollar cryptocurrency economy; at the same time, pave the way for organizations and individuals, to create self automated tailor-made agreements and smart contracts to assist in their acceleration of crypto business deals.",
"premium": 0,
"likes": "548",
"dislike": "3"
},
"dates": {
"icoStart": "03/31/2018 07:16:00",
"icoEnd": "05/31/2018 07:17:00"
}
}
],
}
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'name':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
https://scanexplorer.org/paid_api/icos/Profile?name=DocTailor&api_key=****
Example Request
Method:
GET/icos/Profile?name=DocTailor&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-19 19:18:06",
"error_code": 0,
"error_message": "",
"credit_count": "5249",
"valid_till": "2018-09-28"
},
"data": {
"DocTailor": [
{
"id": "32284",
"name": null,
"url": "https://scanexplorer.org/ico/32284/DocTailor.html",
"logo": "https://scanexplorer.org/0DIR/img/1521561760.png",
"tokentag": "DOCT",
"tagline": "The Legal Tailor-Made Smart Contract Platform",
"intro": "DocTailor is a unique self customizing smart legal contract platform, that allows, lawyers, individuals and organizations to send and create legal tailor-made smart contracts and agreements on the blockchain without developer experience.",
"about": "Smart Contracts",
"description": "DocTailor's mission is to lay the foundation to enable non-crypto businesses to access the multi-trillion dollar cryptocurrency economy; at the same time, pave the way for organizations and individuals, to create self automated tailor-made agreements and smart contracts to assist in their acceleration of crypto business deals.",
"country": "United Kingdom",
"likes": "548",
"dislike": "3",
"milestones": {
"id": "1,2,3,4,5,6,7",
"title": "2017 Q3,2017 Q4,2018 Q1,2018 Q2,2018 Q3,2018 Q4,2018 Q4",
"content": "Concept Development,Research & Planning,Whitepaper Formalisation,Public ICO,Platform Alpha Testing,Beta Platform Launch,DocTailor Platform Launch "
},
"links": {
"website": "www.doctailor.com",
"blog": "",
"whitepaper": "www.doctailor.com/assets/pdfs/whitepaper-en.pdf",
"facebook": "www.facebook.com/doctailor/",
"twitter": "twitter.com/documenttailor",
"linkedin": "www.linkedin.com/company/doctailor/",
"slackchat": "",
"telegram": "t.me/joinchat/GZaHXQ-Bbr7xnrNmjX4zIA",
"github": ""
},
"categories": {
"categories": "Art,Banking,Business services,Charity,Cryptocurrency,Electronics,Entertainment,Investment,Manufacturing,Platform,Retail,Big Data,Legal"
},
"exchanges": {
"exchanges": "EtherDelta",
"currency": "USD",
"price": "0.31"
},
"finance": {
"token": "DOCT",
"price": "0.31",
"bonus": "11%",
"tokentype": "",
"progress": "26950000",
"max": "38053991.8325",
"raised": "0",
"platform": "ECR20",
"accepting": "BTC,ETH"
},
"team": {
"name": "Sam Enrico Williams , Dominic Brown ",
"title": "CEO, COO",
"linkedin": "linkedin.com,linkedin.com",
"profile_base_url": "https://scanexplorer.org/0DIR/",
"profile": "img/team/sam.jpg,img/team/dominic.jpg"
},
"dates": {
"icoStart": "03/31/2018 07:16:00",
"icoEnd": "05/31/2018 07:17:00"
}
}
]
}
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'name':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Returns returns detailed information of the ICO.
Input Attributes
https://scanexplorer.org/paid_api/preico/all?api_key=****
Example Request
Method:
GET/preico/all?api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-19 19:03:15",
"error_code": 0,
"error_message": "",
"credit_count": "5254",
"valid_till": "2018-09-28"
},
"data": {
"DocTailor": [
{
"data": {
"icos": "32284",
},
"results": {
"id": "32284",
"name": "DocTailor",
"url": "https://scanexplorer.org/ico/32284/DocTailor.html",
"logo": "https://scanexplorer.org/0DIR/img/1521561760.png",
"description": "DocTailor's mission is to lay the foundation to enable non-crypto businesses to access the multi-trillion dollar cryptocurrency economy; at the same time, pave the way for organizations and individuals, to create self automated tailor-made agreements and smart contracts to assist in their acceleration of crypto business deals.",
"likes": "548",
"dislikes": "3",
"premium": 1,
"raised": 0
},
"dates": {
"preicoicoStart": "03/31/2018 07:16:00",
"preicoicoEnd": "05/31/2018 07:17:00"
}
}
],
}
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'name':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Returns some basic information about the all PREICOs.
Input Attributes
https://scanexplorer.org/paid_api/preico/filters?api_key=****
Example Request
Method:
GET/preico/filters?api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-19 19:03:15",
"error_code": 0,
"error_message": "",
"credit_count": "5254",
"valid_till": "2018-09-28"
},
"data": {
"DocTailor": [
{
"data": {
"preicos": "32284"
},
"filters": {
"ico_url": "https://scanexplorer.org/ico/32284/DocTailor.html",
"category": "Art,Banking,Business services,Charity,Cryptocurrency,Electronics,Entertainment,Investment,Manufacturing,Platform,Retail,Big Data,Legal",
"platforms": "ECR20",
"Features": "Bonus available,Expert ratings",
"Country": "United Kingdom",
"Registration": "kyc and whitelist",
"restricted area": "Afghanistan,China,U.S.,Canada",
"Accepted currencies": "BTC,ETH",
"Trading on": "EtherDelta",
"Whitelistkyc": "kyc and whitelist",
"likes": "548",
"dislike": "3"
}
}
],
}
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'name':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Returns some basic information about the all PREICOs filters.
https://scanexplorer.org/paid_api/preico/trending?api_key=****
Example Request
Method:
GET/preico/trending?api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-19 19:03:15",
"error_code": 0,
"error_message": "",
"credit_count": "5254",
"valid_till": "2018-09-28"
},
"data": {
"DocTailor": [
{
"results": {
"id": "32284",
"name": null,
"url": "https://scanexplorer.org/ico/32284/DocTailor.html",
"logo": "https://scanexplorer.org/0DIR/img/1521561760.png",
"description": "DocTailor's mission is to lay the foundation to enable non-crypto businesses to access the multi-trillion dollar cryptocurrency economy; at the same time, pave the way for organizations and individuals, to create self automated tailor-made agreements and smart contracts to assist in their acceleration of crypto business deals.",
"premium": 0,
"likes": "548",
"dislike": "3"
},
"dates": {
"preicoicoStart": "03/31/2018 07:16:00",
"preicoicoEnd": "05/31/2018 07:17:00"
}
}
],
}
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'name':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Returns some basic information about the all Trending PREICOs.
https://scanexplorer.org/paid_api/preico/Profile?name=DocTailor&api_key=****
Example Request
Method:
GET/preico/Profile?name=DocTailor&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-19 19:18:06",
"error_code": 0,
"error_message": "",
"credit_count": "5249",
"valid_till": "2018-09-28"
},
"data": {
"DocTailor": [
{
"id": "32284",
"name": null,
"url": "https://scanexplorer.org/ico/32284/DocTailor.html",
"logo": "https://scanexplorer.org/0DIR/img/1521561760.png",
"tokentag": "DOCT",
"tagline": "The Legal Tailor-Made Smart Contract Platform",
"intro": "DocTailor is a unique self customizing smart legal contract platform, that allows, lawyers, individuals and organizations to send and create legal tailor-made smart contracts and agreements on the blockchain without developer experience.",
"about": "Smart Contracts",
"description": "DocTailor's mission is to lay the foundation to enable non-crypto businesses to access the multi-trillion dollar cryptocurrency economy; at the same time, pave the way for organizations and individuals, to create self automated tailor-made agreements and smart contracts to assist in their acceleration of crypto business deals.",
"country": "United Kingdom",
"likes": "548",
"dislike": "3",
"milestones": {
"id": "1,2,3,4,5,6,7",
"title": "2017 Q3,2017 Q4,2018 Q1,2018 Q2,2018 Q3,2018 Q4,2018 Q4",
"content": "Concept Development,Research & Planning,Whitepaper Formalisation,Public ICO,Platform Alpha Testing,Beta Platform Launch,DocTailor Platform Launch "
},
"links": {
"website": "www.doctailor.com",
"blog": "",
"whitepaper": "www.doctailor.com/assets/pdfs/whitepaper-en.pdf",
"facebook": "www.facebook.com/doctailor/",
"twitter": "twitter.com/documenttailor",
"linkedin": "www.linkedin.com/company/doctailor/",
"slackchat": "",
"telegram": "t.me/joinchat/GZaHXQ-Bbr7xnrNmjX4zIA",
"github": ""
},
"categories": {
"categories": "Art,Banking,Business services,Charity,Cryptocurrency,Electronics,Entertainment,Investment,Manufacturing,Platform,Retail,Big Data,Legal"
},
"exchanges": {
"exchanges": "EtherDelta",
"currency": "USD",
"price": "0.31"
},
"finance": {
"token": "DOCT",
"price": "0.31",
"bonus": "11%",
"tokentype": "",
"progress": "26950000",
"max": "38053991.8325",
"raised": "0",
"platform": "ECR20",
"accepting": "BTC,ETH"
},
"team": {
"name": "Sam Enrico Williams , Dominic Brown ",
"title": "CEO, COO",
"linkedin": "linkedin.com,linkedin.com",
"profile_base_url": "https://scanexplorer.org/0DIR/",
"profile": "img/team/sam.jpg,img/team/dominic.jpg"
},
"dates": {
"preicoStart": "03/31/2018 07:16:00",
"preicoEnd": "05/31/2018 07:17:00"
}
}
]
}
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'name':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Returns returns detailed information of the PREICO.
Input Attributes
https://scanexplorer.org/paid_api/airdrop/all?api_key=****
Example Request
Method:
GET /airdrop/all?api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-19 19:03:15",
"error_code": 0,
"error_message": "",
"credit_count": "5254",
"valid_till": "2018-09-28"
},
"data": {
"BitEsprit": [
{
"data": {
"airdrop": "32544",
},
"results": {
"id": "BitEsprit",
"name": "BitEsprit",
"url": "https://scanexplorer.org/ico/32544/BitEsprit.html",
"logo": "https://scanexplorer.org/0DIR/img/1522839847.png",
"description": "BitEsprit is an all-in-one cryptocurrency exchange that features altcoin-fiat trading pairs, debit cards issued by BitEsprit that are linked to users fiat balances, copy trading, no-fee ICO token listing, and advanced charting functionality to redefine the way the industry thinks about altcoin exchanges. Our mission is to eliminate the barriers to entry into the altcoin trading ecosystem for both traders and promising new projects looking to get traction. Our exchange will help traders who have been struggling with the lack of direct access to altcoins, the lack of trading expertise, unusable user interfaces, and insecure exchanges, among others. ",
"likes": "63",
"dislikes": "0",
"premium": 1,
"raised": 0
},
"dates": {
"airdropStart": "03/31/2018 07:16:00",
"airdropEnd": "05/31/2018 07:17:00"
}
}
],
}
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'name':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Returns some basic information about the all Airdrop.
Input Attributes
https://scanexplorer.org/paid_api/airdrop/filters?api_key=****
Example Request
Method:
GET/airdrop/filters?api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-19 19:03:15",
"error_code": 0,
"error_message": "",
"credit_count": "5254",
"valid_till": "2018-09-28"
},
"data": {
"BitEsprit": [
{
"data": {
"icos": "32544"
},
"filters": {
"ico_url": "https://scanexplorer.org/ico/32544/BitEsprit.html",
"category": null,
"platforms": "ECR50",
"Features": null,
"Country": "United Kingdom",
"Registration": "",
"restricted area": "",
"Accepted currencies": "",
"Trading on": "",
"Whitelistkyc": "",
"likes": "63",
"dislike": "0"
}
}
],
}
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'name':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Returns some basic information about the all airdrop filters.
https://scanexplorer.org/paid_api/airdrop/trending?api_key=****
Example Request
Method:
GET/airdrop/trending?api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-19 19:03:15",
"error_code": 0,
"error_message": "",
"credit_count": "5254",
"valid_till": "2018-09-28"
},
"data": {
"BitEsprit": [
{
"results": {
"id": "32544",
"name": null,
"url": "https://scanexplorer.org/ico/32544/BitEsprit.html",
"logo": "https://scanexplorer.org/0DIR/img/1522839847.png",
"description": "BitEsprit is an all-in-one cryptocurrency exchange that features altcoin-fiat trading pairs, debit cards issued by BitEsprit that are linked to users fiat balances, copy trading, no-fee ICO token listing, and advanced charting functionality to redefine the way the industry thinks about altcoin exchanges. Our mission is to eliminate the barriers to entry into the altcoin trading ecosystem for both traders and promising new projects looking to get traction. Our exchange will help traders who have been struggling with the lack of direct access to altcoins, the lack of trading expertise, unusable user interfaces, and insecure exchanges, among others. ",
"premium": 0,
"likes": "63",
"dislike": "0"
},
"dates": {
"AirdropStart": "04/03/2018 04:27:00",
"AirdropEnd": "04/25/2018 04:27:00"
}
}
],
}
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'name':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}
Returns some basic information about the all Trending airdrop.
https://scanexplorer.org/paid_api/airdrop/Profile?name=BitEsprit&api_key=****
Example Request
Method:
GET/airdrop/Profile?name=BitEsprit&api_key=**** HTTP/1.1
Example Response
Status: 200
{
"status": {
"timestamp": "2018-09-20 13:23:03",
"error_code": 0,
"error_message": "",
"credit_count": "5207",
"valid_till": "2018-09-28"
},
"data": {
"BitEsprit": [
{
"id": "32544",
"name": "BitEsprit",
"url": "https://scanexplorer.org/ico/32544/BitEsprit.html",
"logo": "https://scanexplorer.org/0DIR/img/1522839847.png",
"tokentag": "BEC",
"tagline": "",
"intro": "",
"about": "BitEsprit is the first all-in-one cryptocurrency exchange that integrates all the services cryptocurrency traders need. We feature crypto-to-crypto and altcoin-to-fiat trading pairs, intrinsic copy trading platform, advanced ",
"description": "BitEsprit is an all-in-one cryptocurrency exchange that features altcoin-fiat trading pairs, debit cards issued by BitEsprit that are linked to users fiat balances, copy trading, no-fee ICO token listing, and advanced charting functionality to redefine the way the industry thinks about altcoin exchanges. Our mission is to eliminate the barriers to entry into the altcoin trading ecosystem for both traders and promising new projects looking to get traction. Our exchange will help traders who have been struggling with the lack of direct access to altcoins, the lack of trading expertise, unusable user interfaces, and insecure exchanges, among others. ",
"country": "United Kingdom",
"likes": "63",
"dislike": "0",
"milestones": {
"id": "",
"title": "",
"content": ""
},
"links": {
"website": "bitesprit.com/",
"blog": "medium.com/bitesprit",
"whitepaper": "cdn.bitesprit.com/documents/whitepaper.pdf",
"facebook": "www.facebook.com/bitesprit/",
"twitter": "twitter.com/bitesprit",
"linkedin": "www.linkedin.com/company/bitesprit",
"slackchat": "NA",
"telegram": "t.me/bitesprit",
"github": "NA"
},
"categories": {
"categories": null
},
"exchanges": {
"exchanges": "",
"currency": "USD",
"price": ""
},
"finance": {
"token": "BEC",
"price": "",
"bonus": "10%",
"tokentype": "",
"progress": "",
"max": "",
"raised": "0",
"platform": "ECR50",
"accepting": ""
},
"team": {
"name": "BARNABAS BARANYI , ZSOLT VOLNER , PATRIK BURDA , TAMAS SCHERER , ZOLTAN ZSEBOK ",
"title": "CO-FOUNDER, CHIEF STRATEGY, CO-FOUNDER, CHIEF PRODUCT, MOBILE DEVELOPER",
"linkedin": "",
"profile_base_url": "https://scanexplorer.org/0DIR/",
"profile": ""
},
"dates": {
"preIcoStart": "04/03/2018 04:27:00",
"preIcoEnd": "04/25/2018 04:27:00"
}
}
]
}
}
Example Response
Status: 200
{
"status": {
"timestamp": "2018-08-22 14:27:26",
"error_code": 400,
"error_message": "Invalid values for 'name':'TEST'.",
"credit_count": 0
}
}
Example Response
Status: 400
{
"message" : "Bad Request"
}
Example Response
Status: 401
{
"message" : "Unauthorised"
}
Example Response
Status: 404
{
"message" : "Not found"
}
Example Response
Status: 406
{
"message" : "The requested item not acceptable"
}
Example Response
Status: 409
{
"message" : "Conflict"
}
Example Response
Status: 422
{
"message" : "Unauthorised"
}