Cotización del dólar
GET
/api/dolarDevuelve la cotización actual del dólar.
Respuestas
Cotización del dólar exitosa
JSON
{
"mayorista": {...},
"oficial": {...},
"ahorro": {...},
"tarjeta": {...},
"blue": {...},
"cripto": {...},
"mep": {...},
"ccl": {...}
}
GET
/api/dolarEjemplos
cURL
curl -X GET https://criptoya.com/api/dolar
JavaScript
fetch("https://criptoya.com/api/dolar")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("https://criptoya.com/api/dolar");
Python
import requests
response = requests.get("https://criptoya.com/api/dolar")
print(response.json())