Skip to content

Cotizaciones

GET
/v1/cotizaciones

Devuelve la cotización de todas las monedas.

Respuestas

Devuelve todas las cotizaciones
application/json
JSON
[
{
"compra": 0,
"venta": 0,
"casa": "string",
"nombre": "string",
"moneda": "string",
"fechaActualizacion": "string"
}
]

Playground

Ejemplos

cURL
curl https://dolarapi.com/v1/cotizaciones
JavaScript
fetch('https://dolarapi.com/v1/cotizaciones')
PHP
$ch = curl_init("https://dolarapi.com/v1/cotizaciones");

curl_exec($ch);

curl_close($ch);
Python
requests.get("https://dolarapi.com/v1/cotizaciones")
Powered by VitePress OpenAPI