Skip to content
v1.0.0

ArgentinaDatos API

API pública, no oficial, desarrollada en EsJS que brinda información actualizada sobre diferentes datos de Argentina.


¿Encontraste útil esta API? ¡Dejá tu ⭐ en GitHub!

Servers

https://api.argentinadatos.comServidor principal

Eventos


ID: get-feriados

Feriados

GET
/v1/feriados/{año}

Devuelve los feriados del año indicado (o del año actual si no se especifica).

Parameters

Path Parameters

año

Año de consulta

Typeinteger
Example2024
minimum2016
maximum2025

Responses

Devuelve los feriados del año actual
application/json
JSON
[
{
"fecha": "string",
"tipo": "string",
"nombre": "string"
}
]

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/feriados/2024
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/feriados/2024
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/feriados/2024' \
 -H "Content-Type: application/json"
JavaScript
fetch('https://api.argentinadatos.com/v1/feriados/2024', {headers:{'Content-Type':'application/json'}})
  .then(response => response.json())
  .then(data => console.log(data));
PHP
<?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;
?>
Python
import requests

url = 'https://api.argentinadatos.com/v1/feriados/2024'

headers = {
    'Content-Type': 'application/json'
}

response = requests.get(url, headers=headers)
print(response.json())

ID: get-eventos-presidenciales

Eventos presidenciales

GET
/v1/eventos/presidenciales

Devuelve los eventos presidenciales.

Responses

Devuelve una lista de eventos presidenciales
application/json
JSON
[
{
"fecha": "string",
"tipo": "string",
"evento": "string"
}
]

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/eventos/presidenciales
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/eventos/presidenciales
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/eventos/presidenciales' \
 -H "Content-Type: application/json"
JavaScript
fetch('https://api.argentinadatos.com/v1/eventos/presidenciales', {headers:{'Content-Type':'application/json'}})
  .then(response => response.json())
  .then(data => console.log(data));
PHP
<?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;
?>
Python
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


ID: get-cotizaciones-dolares

Dólares

GET
/v1/cotizaciones/dolares

Devuelve las cotizaciones de todas las casas de cambio.

Responses

Devuelve una lista de cotizaciones del dólar
application/json
JSON
[
{
"moneda": "string",
"casa": "string",
"fecha": "string",
"compra": 0,
"venta": 0
}
]

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/cotizaciones/dolares
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/cotizaciones/dolares
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/cotizaciones/dolares' \
 -H "Content-Type: application/json"
JavaScript
fetch('https://api.argentinadatos.com/v1/cotizaciones/dolares', {headers:{'Content-Type':'application/json'}})
  .then(response => response.json())
  .then(data => console.log(data));
PHP
<?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;
?>
Python
import requests

url = 'https://api.argentinadatos.com/v1/cotizaciones/dolares'

headers = {
    'Content-Type': 'application/json'
}

response = requests.get(url, headers=headers)
print(response.json())

ID: get-cotizaciones-dolares-casa

Dólares por casa

GET
/v1/cotizaciones/dolares/{casa}

Devuelve las cotizaciones del dólar de la casa de cambio especificada.

Parameters

Path Parameters

casa*

Casa de cambio

Typestring
Required
Enum
oficialbluebolsacontadoconliquicriptomayoristasolidarioturista
Exampleblue

Responses

Devuelve una lista de cotizaciones del dólar
application/json
JSON
[
{
"moneda": "string",
"casa": "string",
"fecha": "string",
"compra": 0,
"venta": 0
}
]

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/cotizaciones/dolares/blue
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/cotizaciones/dolares/blue
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/cotizaciones/dolares/blue' \
 -H "Content-Type: application/json"
JavaScript
fetch('https://api.argentinadatos.com/v1/cotizaciones/dolares/blue', {headers:{'Content-Type':'application/json'}})
  .then(response => response.json())
  .then(data => console.log(data));
PHP
<?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;
?>
Python
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())

ID: get-cotizaciones-dolares-casa-fecha

Dólar por casa y fecha

GET
/v1/cotizaciones/dolares/{casa}/{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*

Casa de cambio

Typestring
Required
Enum
oficialbluebolsacontadoconliquicriptomayoristasolidarioturista
Exampleblue
fecha*

Fecha de consulta

Typestring
Required
Example2024/01/01
formatdate

Responses

Devuelve una lista de cotizaciones del dólar
application/json
JSON
{
"moneda": "string",
"casa": "string",
"fecha": "string",
"compra": 0,
"venta": 0
}

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/cotizaciones/dolares/blue/2024/01/01
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/cotizaciones/dolares/blue/2024/01/01
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/cotizaciones/dolares/blue/2024/01/01' \
 -H "Content-Type: application/json"
JavaScript
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
<?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;
?>
Python
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


ID: get-finanzas-indices-inflacion

Índices de inflación

GET
/v1/finanzas/indices/inflacion

Devuelve los índices de inflación mensuales.

Responses

Devuelve una lista de índices de inflación
application/json
JSON
[
{
"fecha": "string",
"valor": 0
}
]

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/indices/inflacion
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/indices/inflacion
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/indices/inflacion' \
 -H "Content-Type: application/json"
JavaScript
fetch('https://api.argentinadatos.com/v1/finanzas/indices/inflacion', {headers:{'Content-Type':'application/json'}})
  .then(response => response.json())
  .then(data => console.log(data));
PHP
<?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;
?>
Python
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())

ID: get-finanzas-indices-inflacion-interanual

Índices de inflación interanuales

GET
/v1/finanzas/indices/inflacionInteranual

Devuelve los índices de inflación interanuales.

Responses

Devuelve una lista de índices de inflación
application/json
JSON
[
{
"fecha": "string",
"valor": 0
}
]

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/indices/inflacionInteranual
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/indices/inflacionInteranual
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/indices/inflacionInteranual' \
 -H "Content-Type: application/json"
JavaScript
fetch('https://api.argentinadatos.com/v1/finanzas/indices/inflacionInteranual', {headers:{'Content-Type':'application/json'}})
  .then(response => response.json())
  .then(data => console.log(data));
PHP
<?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;
?>
Python
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())

ID: get-finanzas-indices-uva

Índices UVA

GET
/v1/finanzas/indices/uva

Devuelve los índices UVA.

Responses

Devuelve una lista de índices UVA
application/json
JSON
[
{
"fecha": "string",
"valor": 0
}
]

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/indices/uva
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/indices/uva
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/indices/uva' \
 -H "Content-Type: application/json"
JavaScript
fetch('https://api.argentinadatos.com/v1/finanzas/indices/uva', {headers:{'Content-Type':'application/json'}})
  .then(response => response.json())
  .then(data => console.log(data));
PHP
<?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;
?>
Python
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())

ID: get-finanzas-indices-riesgo-pais

Riesgo país

GET
/v1/finanzas/indices/riesgo-pais

Devuelve una lista de riesgo país. Para obtener el último valor, consultar /v1/finanzas/indices/riesgo-pais/ultimo.

Responses

Devuelve una lista de riesgo país
application/json
JSON
[
{
"fecha": "string",
"valor": 0
}
]

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais' \
 -H "Content-Type: application/json"
JavaScript
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
<?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;
?>
Python
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())

ID: get-finanzas-indices-riesgo-pais-ultimo

Riesgo país (último)

GET
/v1/finanzas/indices/riesgo-pais/ultimo

Devuelve el último valor de riesgo país.

Responses

Devuelve el último valor de riesgo país
application/json
JSON
{
"fecha": "string",
"valor": 0
}

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais/ultimo
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais/ultimo
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais/ultimo' \
 -H "Content-Type: application/json"
JavaScript
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
<?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;
?>
Python
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())

ID: get-finanzas-tasas-plazo-fijo

Plazo fijo

GET
/v1/finanzas/tasas/plazoFijo

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

Devuelve una lista de tasas de plazo fijo
application/json
JSON
[
{
"entidad": "string",
"logo": "string",
"tnaClientes": 123.45,
"tnaNoClientes": 123.45
}
]

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/tasas/plazoFijo
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/tasas/plazoFijo
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/tasas/plazoFijo' \
 -H "Content-Type: application/json"
JavaScript
fetch('https://api.argentinadatos.com/v1/finanzas/tasas/plazoFijo', {headers:{'Content-Type':'application/json'}})
  .then(response => response.json())
  .then(data => console.log(data));
PHP
<?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;
?>
Python
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())

ID: get-finanzas-tasas-depositos-30-dias

Depósitos a 30 días

GET
/v1/finanzas/tasas/depositos30Dias

Tasas de interés por depósitos a 30 días de plazo.

Responses

Devuelve una lista de tasas de interés por depósitos a 30 días
application/json
JSON
[
{
"fecha": "string",
"valor": 0
}
]

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/tasas/depositos30Dias
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/tasas/depositos30Dias
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/tasas/depositos30Dias' \
 -H "Content-Type: application/json"
JavaScript
fetch('https://api.argentinadatos.com/v1/finanzas/tasas/depositos30Dias', {headers:{'Content-Type':'application/json'}})
  .then(response => response.json())
  .then(data => console.log(data));
PHP
<?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;
?>
Python
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())

ID: get-finanzas-fci-mercado-dinero-fecha

Mercado de dinero

GET
/v1/finanzas/fci/mercadoDinero/{fecha}

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*

Fecha de consulta

Typestring
Required
Exampleultimo
formatdate

Responses

Devuelve una lista de Fondos Comunes de Inversión
application/json
JSON
[
{
"fondo": "string",
"fecha": "string",
"vcp": 0,
"ccp": 0,
"patrimonio": 0,
"horizonte": "string"
}
]

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/fci/mercadoDinero/ultimo
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/fci/mercadoDinero/ultimo
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/fci/mercadoDinero/ultimo' \
 -H "Content-Type: application/json"
JavaScript
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
<?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;
?>
Python
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())

ID: get-finanzas-fci-renta-variable-fecha

Renta variable

GET
/v1/finanzas/fci/rentaVariable/{fecha}

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*

Fecha de consulta

Typestring
Required
Exampleultimo
formatdate

Responses

Devuelve una lista de Fondos Comunes de Inversión
application/json
JSON
[
{
"fondo": "string",
"fecha": "string",
"vcp": 0,
"ccp": 0,
"patrimonio": 0,
"horizonte": "string"
}
]

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/fci/rentaVariable/ultimo
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/fci/rentaVariable/ultimo
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/fci/rentaVariable/ultimo' \
 -H "Content-Type: application/json"
JavaScript
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
<?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;
?>
Python
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())

ID: get-finanzas-fci-renta-fija-fecha

Renta fija

GET
/v1/finanzas/fci/rentaFija/{fecha}

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*

Fecha de consulta

Typestring
Required
Exampleultimo
formatdate

Responses

Devuelve una lista de Fondos Comunes de Inversión
application/json
JSON
[
{
"fondo": "string",
"fecha": "string",
"vcp": 0,
"ccp": 0,
"patrimonio": 0,
"horizonte": "string"
}
]

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/fci/rentaFija/ultimo
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/fci/rentaFija/ultimo
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/fci/rentaFija/ultimo' \
 -H "Content-Type: application/json"
JavaScript
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
<?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;
?>
Python
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())

ID: get-finanzas-fci-renta-mixta-fecha

Renta mixta

GET
/v1/finanzas/fci/rentaMixta/{fecha}

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*

Fecha de consulta

Typestring
Required
Exampleultimo
formatdate

Responses

Devuelve una lista de Fondos Comunes de Inversión
application/json
JSON
[
{
"fondo": "string",
"fecha": "string",
"vcp": 0,
"ccp": 0,
"patrimonio": 0,
"horizonte": "string"
}
]

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/fci/rentaMixta/ultimo
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/fci/rentaMixta/ultimo
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/fci/rentaMixta/ultimo' \
 -H "Content-Type: application/json"
JavaScript
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
<?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;
?>
Python
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())

ID: get-finanzas-fci-otros-fecha

Otros

GET
/v1/finanzas/fci/otros/{fecha}

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*

Fecha de consulta

Typestring
Required
Exampleultimo
formatdate

Responses

Devuelve una lista de Fondos Comunes de Inversión
application/json
JSON
[
{
"fondo": "string",
"fecha": "string",
"tea": 0,
"tna": 0,
"tope": 0
}
]

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/fci/otros/ultimo
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/fci/otros/ultimo
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/fci/otros/ultimo' \
 -H "Content-Type: application/json"
JavaScript
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
<?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;
?>
Python
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())

ID: get-finanzas-rendimientos

Rendimientos de todas las entidades

GET
/v1/finanzas/rendimientos

Rendimientos de distintas monedas por entidad.

Las entidades disponibles son:

Responses

Devuelve una lista de rendimientos
application/json
JSON
[
{
"entidad": "string",
"rendimientos": [
{
"moneda": "string",
"apy": 0,
"fecha": "string"
}
]
}
]

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/rendimientos
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/rendimientos
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/rendimientos' \
 -H "Content-Type: application/json"
JavaScript
fetch('https://api.argentinadatos.com/v1/finanzas/rendimientos', {headers:{'Content-Type':'application/json'}})
  .then(response => response.json())
  .then(data => console.log(data));
PHP
<?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;
?>
Python
import requests

url = 'https://api.argentinadatos.com/v1/finanzas/rendimientos'

headers = {
    'Content-Type': 'application/json'
}

response = requests.get(url, headers=headers)
print(response.json())

ID: get-finanzas-rendimientos-entidad

Por entidad

GET
/v1/finanzas/rendimientos/{entidad}

Rendimientos de distintas monedas por entidad.

Las entidades disponibles son:

Parameters

Path Parameters

entidad*

Entidad

Typestring
Required
Enum
buenbitfiwindletsbitbelolemoncashripio
Examplebuenbit

Responses

Devuelve una lista de rendimientos
application/json
JSON
[
{
"moneda": "string",
"apy": 0,
"fecha": "string"
}
]

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/rendimientos/buenbit
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/rendimientos/buenbit
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/rendimientos/buenbit' \
 -H "Content-Type: application/json"
JavaScript
fetch('https://api.argentinadatos.com/v1/finanzas/rendimientos/buenbit', {headers:{'Content-Type':'application/json'}})
  .then(response => response.json())
  .then(data => console.log(data));
PHP
<?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;
?>
Python
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


ID: get-finanzas-indices-inflacion

Índices de inflación

GET
/v1/finanzas/indices/inflacion

Devuelve los índices de inflación mensuales.

Responses

Devuelve una lista de índices de inflación
application/json
JSON
[
{
"fecha": "string",
"valor": 0
}
]

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/indices/inflacion
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/indices/inflacion
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/indices/inflacion' \
 -H "Content-Type: application/json"
JavaScript
fetch('https://api.argentinadatos.com/v1/finanzas/indices/inflacion', {headers:{'Content-Type':'application/json'}})
  .then(response => response.json())
  .then(data => console.log(data));
PHP
<?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;
?>
Python
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())

ID: get-finanzas-indices-inflacion-interanual

Índices de inflación interanuales

GET
/v1/finanzas/indices/inflacionInteranual

Devuelve los índices de inflación interanuales.

Responses

Devuelve una lista de índices de inflación
application/json
JSON
[
{
"fecha": "string",
"valor": 0
}
]

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/indices/inflacionInteranual
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/indices/inflacionInteranual
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/indices/inflacionInteranual' \
 -H "Content-Type: application/json"
JavaScript
fetch('https://api.argentinadatos.com/v1/finanzas/indices/inflacionInteranual', {headers:{'Content-Type':'application/json'}})
  .then(response => response.json())
  .then(data => console.log(data));
PHP
<?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;
?>
Python
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())

ID: get-finanzas-indices-uva

Índices UVA

GET
/v1/finanzas/indices/uva

Devuelve los índices UVA.

Responses

Devuelve una lista de índices UVA
application/json
JSON
[
{
"fecha": "string",
"valor": 0
}
]

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/indices/uva
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/indices/uva
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/indices/uva' \
 -H "Content-Type: application/json"
JavaScript
fetch('https://api.argentinadatos.com/v1/finanzas/indices/uva', {headers:{'Content-Type':'application/json'}})
  .then(response => response.json())
  .then(data => console.log(data));
PHP
<?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;
?>
Python
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())

ID: get-finanzas-indices-riesgo-pais

Riesgo país

GET
/v1/finanzas/indices/riesgo-pais

Devuelve una lista de riesgo país. Para obtener el último valor, consultar /v1/finanzas/indices/riesgo-pais/ultimo.

Responses

Devuelve una lista de riesgo país
application/json
JSON
[
{
"fecha": "string",
"valor": 0
}
]

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais' \
 -H "Content-Type: application/json"
JavaScript
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
<?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;
?>
Python
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())

ID: get-finanzas-indices-riesgo-pais-ultimo

Riesgo país (último)

GET
/v1/finanzas/indices/riesgo-pais/ultimo

Devuelve el último valor de riesgo país.

Responses

Devuelve el último valor de riesgo país
application/json
JSON
{
"fecha": "string",
"valor": 0
}

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais/ultimo
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais/ultimo
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/indices/riesgo-pais/ultimo' \
 -H "Content-Type: application/json"
JavaScript
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
<?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;
?>
Python
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


ID: get-finanzas-tasas-plazo-fijo

Plazo fijo

GET
/v1/finanzas/tasas/plazoFijo

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

Devuelve una lista de tasas de plazo fijo
application/json
JSON
[
{
"entidad": "string",
"logo": "string",
"tnaClientes": 123.45,
"tnaNoClientes": 123.45
}
]

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/tasas/plazoFijo
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/tasas/plazoFijo
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/tasas/plazoFijo' \
 -H "Content-Type: application/json"
JavaScript
fetch('https://api.argentinadatos.com/v1/finanzas/tasas/plazoFijo', {headers:{'Content-Type':'application/json'}})
  .then(response => response.json())
  .then(data => console.log(data));
PHP
<?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;
?>
Python
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())

ID: get-finanzas-tasas-depositos-30-dias

Depósitos a 30 días

GET
/v1/finanzas/tasas/depositos30Dias

Tasas de interés por depósitos a 30 días de plazo.

Responses

Devuelve una lista de tasas de interés por depósitos a 30 días
application/json
JSON
[
{
"fecha": "string",
"valor": 0
}
]

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/tasas/depositos30Dias
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/tasas/depositos30Dias
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/tasas/depositos30Dias' \
 -H "Content-Type: application/json"
JavaScript
fetch('https://api.argentinadatos.com/v1/finanzas/tasas/depositos30Dias', {headers:{'Content-Type':'application/json'}})
  .then(response => response.json())
  .then(data => console.log(data));
PHP
<?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;
?>
Python
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


ID: get-finanzas-fci-mercado-dinero-fecha

Mercado de dinero

GET
/v1/finanzas/fci/mercadoDinero/{fecha}

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*

Fecha de consulta

Typestring
Required
Exampleultimo
formatdate

Responses

Devuelve una lista de Fondos Comunes de Inversión
application/json
JSON
[
{
"fondo": "string",
"fecha": "string",
"vcp": 0,
"ccp": 0,
"patrimonio": 0,
"horizonte": "string"
}
]

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/fci/mercadoDinero/ultimo
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/fci/mercadoDinero/ultimo
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/fci/mercadoDinero/ultimo' \
 -H "Content-Type: application/json"
JavaScript
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
<?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;
?>
Python
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())

ID: get-finanzas-fci-renta-variable-fecha

Renta variable

GET
/v1/finanzas/fci/rentaVariable/{fecha}

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*

Fecha de consulta

Typestring
Required
Exampleultimo
formatdate

Responses

Devuelve una lista de Fondos Comunes de Inversión
application/json
JSON
[
{
"fondo": "string",
"fecha": "string",
"vcp": 0,
"ccp": 0,
"patrimonio": 0,
"horizonte": "string"
}
]

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/fci/rentaVariable/ultimo
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/fci/rentaVariable/ultimo
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/fci/rentaVariable/ultimo' \
 -H "Content-Type: application/json"
JavaScript
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
<?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;
?>
Python
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())

ID: get-finanzas-fci-renta-fija-fecha

Renta fija

GET
/v1/finanzas/fci/rentaFija/{fecha}

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*

Fecha de consulta

Typestring
Required
Exampleultimo
formatdate

Responses

Devuelve una lista de Fondos Comunes de Inversión
application/json
JSON
[
{
"fondo": "string",
"fecha": "string",
"vcp": 0,
"ccp": 0,
"patrimonio": 0,
"horizonte": "string"
}
]

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/fci/rentaFija/ultimo
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/fci/rentaFija/ultimo
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/fci/rentaFija/ultimo' \
 -H "Content-Type: application/json"
JavaScript
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
<?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;
?>
Python
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())

ID: get-finanzas-fci-renta-mixta-fecha

Renta mixta

GET
/v1/finanzas/fci/rentaMixta/{fecha}

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*

Fecha de consulta

Typestring
Required
Exampleultimo
formatdate

Responses

Devuelve una lista de Fondos Comunes de Inversión
application/json
JSON
[
{
"fondo": "string",
"fecha": "string",
"vcp": 0,
"ccp": 0,
"patrimonio": 0,
"horizonte": "string"
}
]

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/fci/rentaMixta/ultimo
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/fci/rentaMixta/ultimo
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/fci/rentaMixta/ultimo' \
 -H "Content-Type: application/json"
JavaScript
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
<?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;
?>
Python
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())

ID: get-finanzas-fci-otros-fecha

Otros

GET
/v1/finanzas/fci/otros/{fecha}

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*

Fecha de consulta

Typestring
Required
Exampleultimo
formatdate

Responses

Devuelve una lista de Fondos Comunes de Inversión
application/json
JSON
[
{
"fondo": "string",
"fecha": "string",
"tea": 0,
"tna": 0,
"tope": 0
}
]

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/fci/otros/ultimo
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/fci/otros/ultimo
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/fci/otros/ultimo' \
 -H "Content-Type: application/json"
JavaScript
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
<?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;
?>
Python
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


ID: get-estado

Estado de la API

GET
/v1/estado

Devuelve el estado de la API.

Responses

Devuelve el estado de la API
application/json
JSON
{
"estado": "string",
"aleatorio": 0
}

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/estado
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/estado
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/estado' \
 -H "Content-Type: application/json"
JavaScript
fetch('https://api.argentinadatos.com/v1/estado', {headers:{'Content-Type':'application/json'}})
  .then(response => response.json())
  .then(data => console.log(data));
PHP
<?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;
?>
Python
import requests

url = 'https://api.argentinadatos.com/v1/estado'

headers = {
    'Content-Type': 'application/json'
}

response = requests.get(url, headers=headers)
print(response.json())

Rendimientos


ID: get-finanzas-rendimientos

Rendimientos de todas las entidades

GET
/v1/finanzas/rendimientos

Rendimientos de distintas monedas por entidad.

Las entidades disponibles son:

Responses

Devuelve una lista de rendimientos
application/json
JSON
[
{
"entidad": "string",
"rendimientos": [
{
"moneda": "string",
"apy": 0,
"fecha": "string"
}
]
}
]

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/rendimientos
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/rendimientos
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/rendimientos' \
 -H "Content-Type: application/json"
JavaScript
fetch('https://api.argentinadatos.com/v1/finanzas/rendimientos', {headers:{'Content-Type':'application/json'}})
  .then(response => response.json())
  .then(data => console.log(data));
PHP
<?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;
?>
Python
import requests

url = 'https://api.argentinadatos.com/v1/finanzas/rendimientos'

headers = {
    'Content-Type': 'application/json'
}

response = requests.get(url, headers=headers)
print(response.json())

ID: get-finanzas-rendimientos-entidad

Por entidad

GET
/v1/finanzas/rendimientos/{entidad}

Rendimientos de distintas monedas por entidad.

Las entidades disponibles son:

Parameters

Path Parameters

entidad*

Entidad

Typestring
Required
Enum
buenbitfiwindletsbitbelolemoncashripio
Examplebuenbit

Responses

Devuelve una lista de rendimientos
application/json
JSON
[
{
"moneda": "string",
"apy": 0,
"fecha": "string"
}
]

Samples

Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/rendimientos/buenbit
}

headers {
  Content-Type: application/json
}
Bruno
get {
  url: https://api.argentinadatos.com/v1/finanzas/rendimientos/buenbit
}

headers {
  Content-Type: application/json
}
cURL
curl -X GET \
'https://api.argentinadatos.com/v1/finanzas/rendimientos/buenbit' \
 -H "Content-Type: application/json"
JavaScript
fetch('https://api.argentinadatos.com/v1/finanzas/rendimientos/buenbit', {headers:{'Content-Type':'application/json'}})
  .then(response => response.json())
  .then(data => console.log(data));
PHP
<?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;
?>
Python
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())

Powered by VitePress OpenAPI