Valor UVA
Devuelve el valor actual del UVA.
Respuesta
200Valor UVA
Content-Type:application/json
timeinteger
valuenumber
JSON
{ "time": "integer", "value": "number" }
GET/api/uva
cURL
curl -X GET \ https://criptoya.com/api/uva
Ejemplos
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())