Skip to content

Dólares

GET
/v1/dolares

Devuelve las distintas cotizaciones del Dólar en Venezuela

Respuestas

Devuelve todas las cotizaciones
JSON
[
{
"fuente": "string",
"nombre": "string",
"compra": 0,
"venta": 0,
"promedio": 0,
"fechaActualizacion": "string"
}
]

Ejemplos

cURL
curl -X GET \
'https://ve.dolarapi.com/v1/dolares'
JavaScript
fetch('https://ve.dolarapi.com/v1/dolares')
  .then(response => response.json())
  .then(data => console.log(data));
PHP
<?php
$url = 'https://ve.dolarapi.com/v1/dolares';
$method = 'GET';

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);

$response = curl_exec($ch);
curl_close($ch);

echo $response;
?>
Python
import requests

url = 'https://ve.dolarapi.com/v1/dolares'

response = requests.get(url)
print(response.json())
Powered by VitePress OpenAPI