Cotizaciones
GET
https://dolarapi.com/v1/cotizacionesDevuelve la cotización de todas las monedas.
Respuestas
Devuelve todas las cotizaciones
JSON
[
{
"compra": 0,
"venta": 0,
"casa": "string",
"nombre": "string",
"moneda": "string",
"fechaActualizacion": "string"
}
]
Ejemplos
cURL
curl -X GET https://dolarapi.com/v1/cotizaciones
JavaScript
fetch("https://dolarapi.com/v1/cotizaciones")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("https://dolarapi.com/v1/cotizaciones");
Python
import requests
response = requests.get("https://dolarapi.com/v1/cotizaciones")
print(response.json())