crypto
Credits: 0.001
Returns the history for the previous close
symbolstring
the crypto symbol e.g BTCUSD
closenumber
the close price
datestring
the date
highnumber
the peak price
lownumber
the low price
opennumber
the open price
symbolstring
the crypto symbol
volumenumber
the volume
Request
Response
{
"symbol": "btcusd",
"open": 35483.72,
"close": 34470.8,
"high": 35922,
"low": 33336,
"volume": 66202.264956,
"date": "2021-06-20"
}
Credits: 0.001
Get news related to a currency
symbolstring
cryptocurrency ticker to request news for e.g BTC
articlesarray
list of articles
symbolstring
symbol requested for
Request
Response
{
"articles": [
{
"title": "$80 Billion Brazilian Investment Bank Launches Bitcoin and Crypto Trading App",
"description": "Brazilian investment bank BTG Pactual becomes first large financial institution in Brazil to enable customers to make direct investments in Bitcoin.",
"url": "https://bitcoinmagazine.com/culture/80-billion-brazilian-investment-bank-launches-bitcoin-and-crypto-trading-app",
"date": "2021-09-21T13:13:01+00:00",
"source": "Bitcoin Magazine"
},
{
"title": "Bitcoin at $40,000, Ethereum at $2,800 Very Important Levels to Watch Now: Mike Novogratz",
"description": "Head of Galaxy Digital Mike Novogratz explains what levels are important for BTC and Ether now that the Chinese real-estate monster crisis is hitting the crypto market",
"url": "https://u.today/bitcoin-at-40000-ethereum-at-2800-very-important-levels-to-watch-now-mike-novogratz",
"date": "2021-09-21T12:51:00+00:00",
"source": "UToday"
}
]
}
Credits: 0.0001
Get the last price for a given crypto ticker
symbolstring
the crypto symbol e.g BTCUSD
pricenumber
the last price
symbolstring
the crypto symbol e.g BTCUSD
Request
Response
{
"symbol": "BTCUSD",
"price": 34682.74
}
Credits: 0.001
Get the last quote for a given crypto ticker
symbolstring
the crypto symbol e.g BTCUSD
ask_pricenumber
the asking price
ask_sizenumber
the ask size
bid_pricenumber
the bidding price
bid_sizenumber
the bid size
symbolstring
the crypto symbol
timestampstring
the UTC timestamp of the quote
Request
Response
{
"symbol": "BTCUSD",
"ask_price": 34679.87,
"bid_price": 34679.86,
"ask_size": 0.595412,
"bid_size": 0.122235,
"timestamp": "2021-06-20T17:25:50.772Z"
}
Credits: 0.000001
Returns the full list of supported symbols
symbolsarray
Request
Response
{
"symbols": [
{
"symbol": "BTCUSD",
"name": "Bitcoin - United States Dollar"
},
{
"symbol": "DOGEEUR",
"name": "Dogecoin - Euro"
},
{
"symbol": "ETHBTC",
"name": "Ethereum - Bitcoin"
}
]
}