Skip to content

Valor UVA

GET
/api/uva

Devuelve el valor actual del UVA.

Respuestas

Valor UVA
JSON
{
"time": 0,
"value": 0
}

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())
Powered by VitePress OpenAPI