Eventos
Feriados
Devuelve los feriados del año indicado (o del año actual si no se especifica).
Parameters
Path Parameters
Año de consulta
2024
2016
2025
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/feriados/2024
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/feriados/2024
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/feriados/2024' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/feriados/2024', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/feriados/2024';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/feriados/2024'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
Eventos presidenciales
Devuelve los eventos presidenciales.
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/eventos/presidenciales
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/eventos/presidenciales
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/eventos/presidenciales' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/eventos/presidenciales', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/eventos/presidenciales';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/eventos/presidenciales'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
Cotizaciones históricas
Dólares
Devuelve las cotizaciones de todas las casas de cambio.
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/cotizaciones/dolares
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/cotizaciones/dolares
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/cotizaciones/dolares' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/cotizaciones/dolares', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/cotizaciones/dolares';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/cotizaciones/dolares'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
Dólares por casa
Devuelve las cotizaciones del dólar de la casa de cambio especificada.
Parameters
Path Parameters
Casa de cambio
oficial
blue
bolsa
contadoconliqui
cripto
mayorista
solidario
turista
blue
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/cotizaciones/dolares/blue
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/cotizaciones/dolares/blue
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/cotizaciones/dolares/blue' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/cotizaciones/dolares/blue', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/cotizaciones/dolares/blue';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/cotizaciones/dolares/blue'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
Dólar por casa y fecha
Devuelve la cotización del dólar de la casa de cambio especificada en la fecha indicada (en formato YYYY/MM/DD
).
Parameters
Path Parameters
Casa de cambio
oficial
blue
bolsa
contadoconliqui
cripto
mayorista
solidario
turista
blue
Fecha de consulta
2024/01/01
date
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/cotizaciones/dolares/blue/2024/01/01
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/cotizaciones/dolares/blue/2024/01/01
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/cotizaciones/dolares/blue/2024/01/01' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/cotizaciones/dolares/blue/2024/01/01', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/cotizaciones/dolares/blue/2024/01/01';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/cotizaciones/dolares/blue/2024/01/01'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
Finanzas
Operations
Índices de inflación
Devuelve los índices de inflación mensuales.
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/finanzas/indices/inflacion
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/finanzas/indices/inflacion
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/indices/inflacion' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/finanzas/indices/inflacion', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/finanzas/indices/inflacion';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/finanzas/indices/inflacion'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
Índices de inflación interanuales
Devuelve los índices de inflación interanuales.
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/finanzas/indices/inflacionInteranual
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/finanzas/indices/inflacionInteranual
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/indices/inflacionInteranual' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/finanzas/indices/inflacionInteranual', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/finanzas/indices/inflacionInteranual';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/finanzas/indices/inflacionInteranual'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
Índices UVA
Devuelve los índices UVA.
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/finanzas/indices/uva
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/finanzas/indices/uva
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/indices/uva' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/finanzas/indices/uva', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/finanzas/indices/uva';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/finanzas/indices/uva'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
Riesgo país
Devuelve una lista de riesgo país. Para obtener el último valor, consultar /v1/finanzas/indices/riesgo-pais/ultimo
.
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
Riesgo país (último)
Devuelve el último valor de riesgo país.
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais/ultimo
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais/ultimo
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais/ultimo' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais/ultimo', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais/ultimo';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais/ultimo'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
Plazo fijo
Tasa Nominal Anual para colocaciones online de $100.000 a 30 días.(*).
Las tasas son reportadas por los bancos al BCRA en cumplimiento del Régimen Informativo de Transparencia, capítulo I.
(*): La tasa puede cambiar para otros montos o plazos.
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/finanzas/tasas/plazoFijo
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/finanzas/tasas/plazoFijo
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/tasas/plazoFijo' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/finanzas/tasas/plazoFijo', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/finanzas/tasas/plazoFijo';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/finanzas/tasas/plazoFijo'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
Depósitos a 30 días
Tasas de interés por depósitos a 30 días de plazo.
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/finanzas/tasas/depositos30Dias
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/finanzas/tasas/depositos30Dias
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/tasas/depositos30Dias' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/finanzas/tasas/depositos30Dias', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/finanzas/tasas/depositos30Dias';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/finanzas/tasas/depositos30Dias'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
Mercado de dinero
Devuelve los valores de Mercado de Dinero de los Fondos Comunes de Inversión en la fecha indicada (en formato YYYY/MM/DD
).
También se puede consultar el ultimo
y penultimo
día con valores utilizando los endpoints:
/v1/finanzas/fci/mercadoDinero/ultimo
/v1/finanzas/fci/mercadoDinero/penultimo
Parameters
Path Parameters
Fecha de consulta
ultimo
date
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/finanzas/fci/mercadoDinero/ultimo
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/finanzas/fci/mercadoDinero/ultimo
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/fci/mercadoDinero/ultimo' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/finanzas/fci/mercadoDinero/ultimo', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/finanzas/fci/mercadoDinero/ultimo';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/finanzas/fci/mercadoDinero/ultimo'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
Renta variable
Devuelve los valores de Renta Variable de los Fondos Comunes de Inversión en la fecha indicada (en formato YYYY/MM/DD
).
También se puede consultar el ultimo
y penultimo
día con valores utilizando los endpoints:
/v1/finanzas/fci/rentaVariable/ultimo
/v1/finanzas/fci/rentaVariable/penultimo
Parameters
Path Parameters
Fecha de consulta
ultimo
date
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/finanzas/fci/rentaVariable/ultimo
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/finanzas/fci/rentaVariable/ultimo
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/fci/rentaVariable/ultimo' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/finanzas/fci/rentaVariable/ultimo', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/finanzas/fci/rentaVariable/ultimo';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/finanzas/fci/rentaVariable/ultimo'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
Renta fija
Devuelve los valores de Renta Fija de los Fondos Comunes de Inversión en la fecha indicada (en formato YYYY/MM/DD
).
También se puede consultar el ultimo
y penultimo
día con valores utilizando los endpoints:
/v1/finanzas/fci/rentaFija/ultimo
/v1/finanzas/fci/rentaFija/penultimo
Parameters
Path Parameters
Fecha de consulta
ultimo
date
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/finanzas/fci/rentaFija/ultimo
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/finanzas/fci/rentaFija/ultimo
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/fci/rentaFija/ultimo' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/finanzas/fci/rentaFija/ultimo', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/finanzas/fci/rentaFija/ultimo';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/finanzas/fci/rentaFija/ultimo'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
Renta mixta
Devuelve los valores de Renta Mixta de los Fondos Comunes de Inversión en la fecha indicada (en formato YYYY/MM/DD
).
También se puede consultar el ultimo
y penultimo
día con valores utilizando los endpoints:
/v1/finanzas/fci/rentaMixta/ultimo
/v1/finanzas/fci/rentaMixta/penultimo
Parameters
Path Parameters
Fecha de consulta
ultimo
date
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/finanzas/fci/rentaMixta/ultimo
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/finanzas/fci/rentaMixta/ultimo
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/fci/rentaMixta/ultimo' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/finanzas/fci/rentaMixta/ultimo', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/finanzas/fci/rentaMixta/ultimo';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/finanzas/fci/rentaMixta/ultimo'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
Otros
Devuelve los valores de Otros Fondos Comunes de Inversión en la fecha indicada (en formato YYYY/MM/DD
).
También se puede consultar el ultimo
y penultimo
día con valores utilizando los endpoints:
/v1/finanzas/fci/otros/ultimo
/v1/finanzas/fci/otros/penultimo
Parameters
Path Parameters
Fecha de consulta
ultimo
date
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/finanzas/fci/otros/ultimo
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/finanzas/fci/otros/ultimo
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/fci/otros/ultimo' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/finanzas/fci/otros/ultimo', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/finanzas/fci/otros/ultimo';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/finanzas/fci/otros/ultimo'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
Rendimientos de todas las entidades
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/finanzas/rendimientos
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/finanzas/rendimientos
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/rendimientos' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/finanzas/rendimientos', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/finanzas/rendimientos';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/finanzas/rendimientos'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
Por entidad
Parameters
Path Parameters
Entidad
buenbit
fiwind
letsbit
belo
lemoncash
ripio
buenbit
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/finanzas/rendimientos/buenbit
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/finanzas/rendimientos/buenbit
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/rendimientos/buenbit' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/finanzas/rendimientos/buenbit', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/finanzas/rendimientos/buenbit';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/finanzas/rendimientos/buenbit'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
Índices
Índices de inflación
Devuelve los índices de inflación mensuales.
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/finanzas/indices/inflacion
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/finanzas/indices/inflacion
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/indices/inflacion' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/finanzas/indices/inflacion', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/finanzas/indices/inflacion';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/finanzas/indices/inflacion'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
Índices de inflación interanuales
Devuelve los índices de inflación interanuales.
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/finanzas/indices/inflacionInteranual
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/finanzas/indices/inflacionInteranual
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/indices/inflacionInteranual' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/finanzas/indices/inflacionInteranual', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/finanzas/indices/inflacionInteranual';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/finanzas/indices/inflacionInteranual'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
Índices UVA
Devuelve los índices UVA.
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/finanzas/indices/uva
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/finanzas/indices/uva
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/indices/uva' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/finanzas/indices/uva', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/finanzas/indices/uva';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/finanzas/indices/uva'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
Riesgo país
Devuelve una lista de riesgo país. Para obtener el último valor, consultar /v1/finanzas/indices/riesgo-pais/ultimo
.
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
Riesgo país (último)
Devuelve el último valor de riesgo país.
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais/ultimo
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais/ultimo
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais/ultimo' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais/ultimo', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais/ultimo';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais/ultimo'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
Tasas
Plazo fijo
Tasa Nominal Anual para colocaciones online de $100.000 a 30 días.(*).
Las tasas son reportadas por los bancos al BCRA en cumplimiento del Régimen Informativo de Transparencia, capítulo I.
(*): La tasa puede cambiar para otros montos o plazos.
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/finanzas/tasas/plazoFijo
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/finanzas/tasas/plazoFijo
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/tasas/plazoFijo' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/finanzas/tasas/plazoFijo', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/finanzas/tasas/plazoFijo';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/finanzas/tasas/plazoFijo'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
Depósitos a 30 días
Tasas de interés por depósitos a 30 días de plazo.
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/finanzas/tasas/depositos30Dias
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/finanzas/tasas/depositos30Dias
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/tasas/depositos30Dias' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/finanzas/tasas/depositos30Dias', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/finanzas/tasas/depositos30Dias';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/finanzas/tasas/depositos30Dias'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
FCI
Mercado de dinero
Devuelve los valores de Mercado de Dinero de los Fondos Comunes de Inversión en la fecha indicada (en formato YYYY/MM/DD
).
También se puede consultar el ultimo
y penultimo
día con valores utilizando los endpoints:
/v1/finanzas/fci/mercadoDinero/ultimo
/v1/finanzas/fci/mercadoDinero/penultimo
Parameters
Path Parameters
Fecha de consulta
ultimo
date
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/finanzas/fci/mercadoDinero/ultimo
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/finanzas/fci/mercadoDinero/ultimo
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/fci/mercadoDinero/ultimo' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/finanzas/fci/mercadoDinero/ultimo', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/finanzas/fci/mercadoDinero/ultimo';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/finanzas/fci/mercadoDinero/ultimo'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
Renta variable
Devuelve los valores de Renta Variable de los Fondos Comunes de Inversión en la fecha indicada (en formato YYYY/MM/DD
).
También se puede consultar el ultimo
y penultimo
día con valores utilizando los endpoints:
/v1/finanzas/fci/rentaVariable/ultimo
/v1/finanzas/fci/rentaVariable/penultimo
Parameters
Path Parameters
Fecha de consulta
ultimo
date
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/finanzas/fci/rentaVariable/ultimo
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/finanzas/fci/rentaVariable/ultimo
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/fci/rentaVariable/ultimo' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/finanzas/fci/rentaVariable/ultimo', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/finanzas/fci/rentaVariable/ultimo';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/finanzas/fci/rentaVariable/ultimo'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
Renta fija
Devuelve los valores de Renta Fija de los Fondos Comunes de Inversión en la fecha indicada (en formato YYYY/MM/DD
).
También se puede consultar el ultimo
y penultimo
día con valores utilizando los endpoints:
/v1/finanzas/fci/rentaFija/ultimo
/v1/finanzas/fci/rentaFija/penultimo
Parameters
Path Parameters
Fecha de consulta
ultimo
date
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/finanzas/fci/rentaFija/ultimo
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/finanzas/fci/rentaFija/ultimo
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/fci/rentaFija/ultimo' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/finanzas/fci/rentaFija/ultimo', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/finanzas/fci/rentaFija/ultimo';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/finanzas/fci/rentaFija/ultimo'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
Renta mixta
Devuelve los valores de Renta Mixta de los Fondos Comunes de Inversión en la fecha indicada (en formato YYYY/MM/DD
).
También se puede consultar el ultimo
y penultimo
día con valores utilizando los endpoints:
/v1/finanzas/fci/rentaMixta/ultimo
/v1/finanzas/fci/rentaMixta/penultimo
Parameters
Path Parameters
Fecha de consulta
ultimo
date
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/finanzas/fci/rentaMixta/ultimo
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/finanzas/fci/rentaMixta/ultimo
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/fci/rentaMixta/ultimo' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/finanzas/fci/rentaMixta/ultimo', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/finanzas/fci/rentaMixta/ultimo';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/finanzas/fci/rentaMixta/ultimo'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
Otros
Devuelve los valores de Otros Fondos Comunes de Inversión en la fecha indicada (en formato YYYY/MM/DD
).
También se puede consultar el ultimo
y penultimo
día con valores utilizando los endpoints:
/v1/finanzas/fci/otros/ultimo
/v1/finanzas/fci/otros/penultimo
Parameters
Path Parameters
Fecha de consulta
ultimo
date
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/finanzas/fci/otros/ultimo
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/finanzas/fci/otros/ultimo
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/fci/otros/ultimo' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/finanzas/fci/otros/ultimo', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/finanzas/fci/otros/ultimo';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/finanzas/fci/otros/ultimo'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
API
Operations
Estado de la API
Devuelve el estado de la API.
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/estado
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/estado
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/estado' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/estado', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/estado';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/estado'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
Rendimientos
Rendimientos de todas las entidades
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/finanzas/rendimientos
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/finanzas/rendimientos
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/rendimientos' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/finanzas/rendimientos', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/finanzas/rendimientos';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/finanzas/rendimientos'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())
Por entidad
Parameters
Path Parameters
Entidad
buenbit
fiwind
letsbit
belo
lemoncash
ripio
buenbit
Responses
Samples
get {
url: https://api.argentinadatos.com/v1/finanzas/rendimientos/buenbit
}
headers {
Content-Type: application/json
}
get {
url: https://api.argentinadatos.com/v1/finanzas/rendimientos/buenbit
}
headers {
Content-Type: application/json
}
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/rendimientos/buenbit' \
-H "Content-Type: application/json"
fetch('https://api.argentinadatos.com/v1/finanzas/rendimientos/buenbit', {headers:{'Content-Type':'application/json'}})
.then(response => response.json())
.then(data => console.log(data));
<?php
$url = 'https://api.argentinadatos.com/v1/finanzas/rendimientos/buenbit';
$method = 'GET';
$headers = [
'Content-Type' => 'application/json',
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
import requests
url = 'https://api.argentinadatos.com/v1/finanzas/rendimientos/buenbit'
headers = {
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
print(response.json())