Vicuco Ticker API
Our API is currently free to use for noncommercial use. We only show ticker data updated every 10 minutes.
Response URL
https://vicuco.com/api/ticker/VIRTUAL_CURRENCY/FOREIGN_CURRENCY
The virtual_currency and foreign_currency parameters are optional and default to BTC and USD respectively.
VIRTUAL_CURRENCY Parameters
- btc
- ltc
FOREIGN_CURRENCY Parameters
- usd
- cad
- cny
- eur
- rub
Example call using PHP
// Fetch JSON
$json = file_get_contents("https://vicuco.com/api/ticker/btc/cad");
// Convert to PHP object
$obj = json_decode($json);
// Dump out results
var_dump($obj);
JSON Response
{ "cad": "301.24939559505", "volume": "42063.47619735", "timestamp": "1440360002" }
Dumped PHP object
stdClass Object ( [cad] => 301.24939559505 [volume] => 42063.47619735 [timestamp] => 1440360002 )
We reserve the right to block your application if it is making too many requests. If you would like to use our API for high volume applications, please contact us.