Skip to content

Cotización del dólar

GET
/api/dolar

Devuelve la cotización actual del dólar.

Respuestas

Cotización del dólar exitosa
JSON
{
"mayorista": {...},
"oficial": {...},
"ahorro": {...},
"tarjeta": {...},
"blue": {...},
"cripto": {...},
"mep": {...},
"ccl": {...}
}

Ejemplos

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