Dólar Tarjeta
GET
https://dolarapi.com/v1/dolares/tarjetaEs el valor de la cotización del dólar estadounidense en el mercado oficial, más el impuesto PAIS (30%), el impuesto a las ganancias (100%) y el impuesto a cuenta de bienes personales (25%).
Respuestas
Devuelve el valor del Dólar Tarjeta
application/json
JSON
{
"compra": 0,
"venta": 0,
"casa": "string",
"nombre": "string",
"moneda": "string",
"fechaActualizacion": "string"
}
GET
https://dolarapi.com/v1/dolares/tarjetaEjemplos
cURL
curl -X GET \
'https://dolarapi.com/v1/dolares/tarjeta'
JavaScript
fetch('https://dolarapi.com/v1/dolares/tarjeta')
.then(response => response.json())
.then(data => console.log(data));
PHP
<?php
$url = 'https://dolarapi.com/v1/dolares/tarjeta';
$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/tarjeta'
response = requests.get(url)
print(response.json())