Skip to content

Dólar Paralelo

GET
/v1/dolares/paralelo

Cotización del Dólar Paralelo en Venezuela

Respuestas

Devuelve la cotización del Dólar Paralelo
application/json
JSON
{
"fuente": "string",
"nombre": "string",
"compra": 0,
"venta": 0,
"promedio": 0,
"fechaActualizacion": "string"
}

Playground

Ejemplos

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

curl_exec($ch);

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