Dólar Blue
GET
https://dolarapi.com/v1/dolares/blueCotización del dólar estadounidense en el mercado paralelo o informal. Es decir, el precio de compra y venta de dólares en cuevas o casas de cambio no autorizadas por el Banco Central de la República Argentina (BCRA).
Respuestas
Devuelve la cotización del Dólar Blue
JSON
{
"compra": 0,
"venta": 0,
"casa": "string",
"nombre": "string",
"moneda": "string",
"fechaActualizacion": "string"
}
GET
https://dolarapi.com/v1/dolares/blueEjemplos
cURL
curl -X GET \
'https://dolarapi.com/v1/dolares/blue'
JavaScript
fetch('https://dolarapi.com/v1/dolares/blue')
.then(response => response.json())
.then(data => console.log(data));
PHP
<?php
$url = 'https://dolarapi.com/v1/dolares/blue';
$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://dolarapi.com/v1/dolares/blue'
response = requests.get(url)
print(response.json())