Dólares
GET
/v1/cotizaciones/dolaresDevuelve las cotizaciones de todas las casas de cambio.
Respuestas
Devuelve una lista de cotizaciones del dólar
JSON
[
{
"moneda": "string",
"casa": "string",
"fecha": "string",
"compra": 0,
"venta": 0
}
]
GET
/v1/cotizaciones/dolaresEjemplos
cURL
curl -X GET https://api.argentinadatos.com/v1/cotizaciones/dolares
JavaScript
fetch("https://api.argentinadatos.com/v1/cotizaciones/dolares")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("https://api.argentinadatos.com/v1/cotizaciones/dolares");
Python
import requests
response = requests.get("https://api.argentinadatos.com/v1/cotizaciones/dolares")
print(response.json())