Skip to content

Dólares Ámbito

GET
/v1/ambito/dolares

Devuelve 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"
}
]

Ejemplos

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
/v1/ambito/dolares/oficial

Devuelve 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"
}

Ejemplos

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
/v1/ambito/dolares/blue

Devuelve 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"
}

Ejemplos

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
/v1/ambito/dolares/bolsa

Devuelve 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"
}

Ejemplos

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
/v1/ambito/dolares/contadoconliqui

Devuelve 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"
}

Ejemplos

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
/v1/ambito/dolares/tarjeta

Devuelve 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"
}

Ejemplos

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
/v1/ambito/dolares/mayorista

Devuelve 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"
}

Ejemplos

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
/v1/ambito/dolares/cripto

Devuelve 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"
}

Ejemplos

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