Dólares Ámbito
GET
https://dolarapi.com/v1/ambito/dolaresDevuelve la cotización según Ámbito Financiero.
Respuestas
Devuelve todas las cotizaciones
application/json
JSON
[
{
"compra": 0,
"venta": 0,
"casa": "string",
"nombre": "string",
"moneda": "string",
"fechaActualizacion": "string"
}
]
GET
https://dolarapi.com/v1/ambito/dolaresEjemplos
cURL
curl -X GET \
'https://dolarapi.com/v1/ambito/dolares'
JavaScript
fetch('https://dolarapi.com/v1/ambito/dolares')
.then(response => response.json())
.then(data => console.log(data));
PHP
<?php
$url = 'https://dolarapi.com/v1/ambito/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://dolarapi.com/v1/ambito/dolares'
response = requests.get(url)
print(response.json())
Dólar Oficial
GET
https://dolarapi.com/v1/ambito/dolares/oficialDevuelve la cotización según Ámbito Financiero.
Respuestas
Devuelve la cotización del Dólar Oficial
application/json
JSON
{
"compra": 0,
"venta": 0,
"casa": "string",
"nombre": "string",
"moneda": "string",
"fechaActualizacion": "string"
}
GET
https://dolarapi.com/v1/ambito/dolares/oficialEjemplos
cURL
curl -X GET \
'https://dolarapi.com/v1/ambito/dolares/oficial'
JavaScript
fetch('https://dolarapi.com/v1/ambito/dolares/oficial')
.then(response => response.json())
.then(data => console.log(data));
PHP
<?php
$url = 'https://dolarapi.com/v1/ambito/dolares/oficial';
$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/ambito/dolares/oficial'
response = requests.get(url)
print(response.json())
Dólar Blue
GET
https://dolarapi.com/v1/ambito/dolares/blueDevuelve la cotización según Ámbito Financiero.
Respuestas
Devuelve la cotización del Dólar Blue
application/json
JSON
{
"compra": 0,
"venta": 0,
"casa": "string",
"nombre": "string",
"moneda": "string",
"fechaActualizacion": "string"
}
GET
https://dolarapi.com/v1/ambito/dolares/blueEjemplos
cURL
curl -X GET \
'https://dolarapi.com/v1/ambito/dolares/blue'
JavaScript
fetch('https://dolarapi.com/v1/ambito/dolares/blue')
.then(response => response.json())
.then(data => console.log(data));
PHP
<?php
$url = 'https://dolarapi.com/v1/ambito/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/ambito/dolares/blue'
response = requests.get(url)
print(response.json())
Dólar Bolsa
GET
https://dolarapi.com/v1/ambito/dolares/bolsaDevuelve la cotización según Ámbito Financiero.
Respuestas
Devuelve la cotización del Dólar Bolsa
application/json
JSON
{
"compra": 0,
"venta": 0,
"casa": "string",
"nombre": "string",
"moneda": "string",
"fechaActualizacion": "string"
}
GET
https://dolarapi.com/v1/ambito/dolares/bolsaEjemplos
cURL
curl -X GET \
'https://dolarapi.com/v1/ambito/dolares/bolsa'
JavaScript
fetch('https://dolarapi.com/v1/ambito/dolares/bolsa')
.then(response => response.json())
.then(data => console.log(data));
PHP
<?php
$url = 'https://dolarapi.com/v1/ambito/dolares/bolsa';
$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/ambito/dolares/bolsa'
response = requests.get(url)
print(response.json())
Dólar Contado con Liquidación
GET
https://dolarapi.com/v1/ambito/dolares/contadoconliquiDevuelve la cotización según Ámbito Financiero.
Respuestas
Devuelve la cotización del Dólar Contado con liquidación
application/json
JSON
{
"compra": 0,
"venta": 0,
"casa": "string",
"nombre": "string",
"moneda": "string",
"fechaActualizacion": "string"
}
GET
https://dolarapi.com/v1/ambito/dolares/contadoconliquiEjemplos
cURL
curl -X GET \
'https://dolarapi.com/v1/ambito/dolares/contadoconliqui'
JavaScript
fetch('https://dolarapi.com/v1/ambito/dolares/contadoconliqui')
.then(response => response.json())
.then(data => console.log(data));
PHP
<?php
$url = 'https://dolarapi.com/v1/ambito/dolares/contadoconliqui';
$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/ambito/dolares/contadoconliqui'
response = requests.get(url)
print(response.json())
Dólar Tarjeta
GET
https://dolarapi.com/v1/ambito/dolares/tarjetaDevuelve la cotización según Ámbito Financiero.
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/ambito/dolares/tarjetaEjemplos
cURL
curl -X GET \
'https://dolarapi.com/v1/ambito/dolares/tarjeta'
JavaScript
fetch('https://dolarapi.com/v1/ambito/dolares/tarjeta')
.then(response => response.json())
.then(data => console.log(data));
PHP
<?php
$url = 'https://dolarapi.com/v1/ambito/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/ambito/dolares/tarjeta'
response = requests.get(url)
print(response.json())
Dólar Mayorista
GET
https://dolarapi.com/v1/ambito/dolares/mayoristaDevuelve la cotización según Ámbito Financiero.
Respuestas
Devuelve la cotización del Dólar Mayorista
application/json
JSON
{
"compra": 0,
"venta": 0,
"casa": "string",
"nombre": "string",
"moneda": "string",
"fechaActualizacion": "string"
}
GET
https://dolarapi.com/v1/ambito/dolares/mayoristaEjemplos
cURL
curl -X GET \
'https://dolarapi.com/v1/ambito/dolares/mayorista'
JavaScript
fetch('https://dolarapi.com/v1/ambito/dolares/mayorista')
.then(response => response.json())
.then(data => console.log(data));
PHP
<?php
$url = 'https://dolarapi.com/v1/ambito/dolares/mayorista';
$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/ambito/dolares/mayorista'
response = requests.get(url)
print(response.json())
Dólar Cripto
GET
https://dolarapi.com/v1/ambito/dolares/criptoDevuelve la cotización según Ámbito Financiero.
Respuestas
Devuelve la cotización del Dólar Cripto
application/json
JSON
{
"compra": 0,
"venta": 0,
"casa": "string",
"nombre": "string",
"moneda": "string",
"fechaActualizacion": "string"
}
GET
https://dolarapi.com/v1/ambito/dolares/criptoEjemplos
cURL
curl -X GET \
'https://dolarapi.com/v1/ambito/dolares/cripto'
JavaScript
fetch('https://dolarapi.com/v1/ambito/dolares/cripto')
.then(response => response.json())
.then(data => console.log(data));
PHP
<?php
$url = 'https://dolarapi.com/v1/ambito/dolares/cripto';
$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/ambito/dolares/cripto'
response = requests.get(url)
print(response.json())
Powered by VitePress OpenAPI