Valor UVA
GET
/api/uvaDevuelve el valor actual del UVA.
Respuestas
Valor UVA
JSON
{
"time": 0,
"value": 0
}
GET
/api/uvaEjemplos
cURL
curl -X GET https://criptoya.com/api/uva
JavaScript
fetch("https://criptoya.com/api/uva")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("https://criptoya.com/api/uva");
Python
import requests
response = requests.get("https://criptoya.com/api/uva")
print(response.json())