Skip to content

Dólares

GET
/v1/cotizaciones/dolares

Devuelve 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
}
]

Ejemplos

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

Ejemplos

Cotización histórica del dólar