ArgentinaDatos
ArgentinaDatos — keyless JSON API
ArgentinaDatos. Unofficial Argentinian data API
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
GET https://argentinadatos.com/openapi.json
{
"openapi": "3.0.0",
"info": {
"title": "ArgentinaDatos API",
"version": "1.0.0",
"description": "API pública, **no oficial**, desarrollada en [EsJS](https://es.js.org?ref=argentinadatos.com) que brinda información actualizada sobre diferentes datos de Argentina.\n\n<br/>¿Encontraste útil esta API? **¡Dejá tu ⭐ en [GitHub](https://github.com/enzonotario/esjs-argentina-datos-api)!**"
},
"servers": [
{
"url": "https://api.argentinadatos.com",
"description": "Servidor principal"
}
],
"paths": {
"/v1/feriados/{año}": {
"get": {
"summary": "Feriados",
"tags": [
"Eventos"
],
"description": "Devuelve los feriados del año indicado (o del año actual si no se especifica).",
"parameters": [
{
"name": "año",
"in": "path",
"description": "Año de consulta",
"required": true,
"schema": {
"type": "integer",
"minimum": 2016,
"maximum": 2026
},
"example": 2026
}
],
"responses": {
"200": {
"description": "Devuelve los feriados del año actual",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Feriado"
}
}
}
}
}
},
"operationId": "get-feriados",
"x-data-source": [
"[La Nación](https://www.lanacion.com.ar/feriados/)"
]
}
},
"/v1/feriados-bancarios/{año}": {
"get": {
"summary": "Feriados bancarios",
"tags": [
"Eventos"
],
"description": "Devuelve los feriados bancarios del año indicado (o del año actual si no se especifica).",
"parameters": [
{
"name": "año",
"in": "path",
"description": "Año de consulta",
"required": true,
"schema": {
"type": "integer",
"minimum": 2011,
"maximum": 2026
},
"example": 2026
}
],
"responses": {
"200": {
"description": "Devuelve los feriados bancarios del año indicado",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/FeriadoBancario"
}
}
}
}
}
},
"operationId": "get-feriados-bancarios",
"x-data-source": [
"[BCRA](https://www.bcra.gob.ar/consulta-feriados-bancarios/)"
]
}
},
"/v1/cotizaciones/dolares": {
"get": {
"summary": "Dólares",
"tags": [
"Cotizaciones históricas"
],
"description": "Devuelve las cotizaciones de todas las casas de cambio.",
"responses": {
"200": {
"description": "Devuelve una lista de cotizaciones del dólar",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Cotizacion"
}
}
}
}
}
},
"operationId": "get-cotizaciones-dolares",
"x-data-source": [
"[DolarApi](https://dolarapi.com)"
]
}
},
"/v1/cotizaciones/dolares/{casa}": {
"get": {
"summary": "Dólares por casa",
"tags": [
"Cotizaciones históricas"
],
"description": "Devuelve las cotizaciones del dólar de la casa de cambio especificada.",
"parameters": [
{
"name": "casa",
"in": "path",
"description": "Casa de cambio",
"required": true,
"schema": {
"type": "string",
"enum": [
"oficial",
"blue"
]
},
"example": "blue"
}
],
"responses": {
"200": {
"description": "Devuelve una lista de cotizaciones del dólar",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Cotizacion"
}
}
}
}
}
},
"operationId": "get-cotizaciones-dolares-casa",
"x-data-source": [
"[DolarApi](https://dolarapi.com)"
]
}
},
"/v1/cotizaciones/dolares/{casa}/{fecha}": {
"get": {
"summary": "Dólar por casa y fecha",
"tags": [
"Cotizaciones históricas"
],
"description": "Devuelve la cotización del dólar de la casa de cambio especificada en la fecha indicada (en formato `YYYY/MM/DD`).",
"parameters": [
{
"name": "casa",
"in": "path",
"description": "Casa de cambio",
"required": true,
"schema": {
"type": "string",
"enum": [
"oficial",
"blue"
]
},
"example": "blue"
},
{
"name": "fecha",
"in": "path",
"description": "Fecha de consulta",
"required": true,
"schema": {
"type": "string",
"format": "date"
},
"example": "2024/01/01"
}
],
"responses": {
"200": {
"description": "Devuelve una lista de cotizaciones del dólar",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Cotizacion"
}
}
}
}
},
"operationId": "get-cotizaciones-dolares-casa-fecha",
"x-data-source": [
"[DolarApi](https://dolarapi.com)"
]
}
},
"/v1/eventos/presidenciales": {
"get": {
"summary": "Eventos presidenciales",
"tags": [
"Eventos"
],
"description": "Devuelve los eventos presidenciales.",
"responses": {
"200": {
"description": "Devuelve una lista de eventos presidenciales",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EventoPresidencial"
}
}
}
}
}
},
"operationId": "get-eventos-presidenciales",
"x-data-source": [
"[Wikipedia](https://es.wikipedia.org/wiki/Anexo:Presidentes_de_la_Naci%C3%B3n_Argentina)"
]
}
},
"/v1/finanzas/indices/inflacion": {
"get": {
"summary": "Índices de inflación",
"tags": [
"Finanzas",
"Índices"
],
"description": "Devuelve los índices de inflación mensuales.",
"responses": {
"200": {
"description": "Devuelve una lista de índices de inflación",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/IndiceInflacion"
}
}
}
}
}
},
"operationId": "get-finanzas-indices-inflacion",
"x-sidebar-title": "Inflación mensual",
"x-data-source": [
"[BCRA](https://bcra.gob.ar/)"
]
}
},
"/v1/finanzas/indices/inflacionInteranual": {
"get": {
"summary": "Índices de inflación interanuales",
"tags": [
"Finanzas",
"Índices"
],
"description": "Devuelve los índices de inflación interanuales.",
"responses": {
"200": {
"description": "Devuelve una lista de índices de inflación",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/IndiceInflacion"
}
}
}
}
}
},
"operationId": "get-finanzas-indices-inflacion-interanual",
"x-sidebar-title": "Inflación interanual",
"x-data-source": [
"[BCRA](https://bcra.gob.ar/)"
]
}
}
},
"components": {
"schemas": {
"LetraCapitalizable": {
"title": "LetraCapitalizable",
"type": "object",
"properties": {
"ticker": {
"type": "string",
"description": "Código del instrumento (ej: S31G5, T17O5)"
},
"fechaEmision": {
"type": "string",
"description": "Fecha de emisión original (ISO 8601)"
},
"fechaVencimiento": {
"type": "string",
"description": "Fecha de vencimiento (ISO 8601)"
},
"tem": {
"type": "number",
"description": "Tasa Efectiva Mensual (%)"
},
"vpv": {
"type": "number",
"description": "Valor de Pago al Vencimiento por cada $100 de valor nominal"
}
},
"x-examples": {
"Example 1": {
"ticker": "S31G5",
"fechaEmision": "2024-06-14",
"fechaVencimiento": "2025-08-31",
"tem": 3.75,
"vpv": 118.45612
}
}
},
"BonoSoberanoCer": {
"title": "BonoSoberanoCer",
"type": "object",
"required": [
"ticker",
"precioArs"
],
"properties": {
"ticker": {
"type": "string",
"description": "Código del bono (ej. TZX26, TX26)"
},
"precioArs": {
"type": "number",
"description": "Precio de cotización en pesos argentinos"
},
"tirPorcentaje": {
"type": "number",
"description": "Tasa interna de retorno (TIR) en porcentaje"
},
"fechaVencimiento": {
"type": "string",
"format": "date",
"description": "Fecha de vencimiento (ISO 8601, solo fecha: yyyy-MM-dd)"
},
"volumen": {
"type": "number",
"description": "Volumen nominal negociado, si la fuente lo publica"
}
},
"x-examples": {
"Example 1": {
"ticker": "TZX26",
"precioArs": 379.3,
"tirPorcentaje": -8.55,
"fechaVencimiento": "2026-06-30",
"volumen": 7197806107
}
}
},
"BonosCer": {
"title": "BonosCer",
"type": "object",
"required": [
"fechaActualizacion",
"bonos"
],
"properties": {
"fechaActualizacion": {
"type": "string",
"format": "date-time",
"description": "Instante en que se generó el recurso (UTC, ISO 8601 con sufijo Z)"
},
"bonos": {
"type": "array",
"description": "Filas de la grilla soberanos CER",
"items": {
"$ref": "#/components/schemas/BonoSoberanoCer"
}
},
"errorExtraccion": {
"type": "string",
"description": "Solo si falló la extracción: mensaje de error"
}
},
"x-examples": {
"Example 1": {
"fechaActualizacion": "2026-05-04T19:02:59.767Z",
"bonos": [
{
"ticker": "TZX26",
"precioArs": 379.3,
"tirPorcentaje": -8.55,
"fechaVencimiento": "2026-06-30",
"volumen": 7197806107
}
]
}
}
},
"Feriado": {
"title": "Feriado",
"type": "object",
"properties": {
"fecha": {
"type": "string"
},
"tipo": {
"type": "string"
},
"nombre": {
"type": "string"
}
},
"x-examples": {
"Example 1": {
"fecha": "2020-01-01",
"tipo": "Inamovible",
"motivo": "Año Nuevo"
}
}
},
"FeriadoBancario": {
"title": "FeriadoBancario",
"type": "object",
"properties": {
"fecha": {
"type": "string"
},
"nombre": {
"type": "string"
}
},
"x-examples": {
"Example 1": {
"fecha": "2026-01-01",
"nombre": "Año nuevo"
}
}
},
"Estado": {
"title": "Estado",
"type": "object",
"properties": {
"estado": {
"type": "string"
},
"aleatorio": {
"type": "integer"
}
},
"x-examples": {
"Example 1": {
"estado": "Disponible",
"aleatorio": 1234
}
}
},
"Cotizacion": {
"title": "Cotizacion",
"type": "object",
"properties": {
"moneda": {
"type": "string"
},
"casa": {
"type": "string"
},
"fecha": {
"type": "string"
},
"compra": {
"type": "number"
},
"venta": {
"type": "number"
}
},
"x-examples": {
"Example 1": {
"compra": 123.45,
"venta": 123.45
}
}
},
"EventoPresidencial": {
"title": "EventoPresidencial",
"type": "object",
"properties": {
"fecha": {
"type": "string"
},
"tipo": {
"type": "string"
},
"evento": {
"type": "string"
}
},
"x-examples": {
"Example 1": {
"fecha": "2020-01-01",
"evento": "Año Nuevo"
}
}
}
}
}
}curl "https://argentinadatos.com/openapi.json"const res = await fetch("https://argentinadatos.com/openapi.json");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://argentinadatos.com/openapi.json")
print(res.json())/openapi.jsonPROBEDArgentinaDatos — keyless JSON API
/openapi.json?limit=5Paginated variant with limit parameter.
/v1/feriados/{año}Feriados
/v1/feriados-bancarios/{año}Feriados bancarios
/v1/cotizaciones/dolaresDólares
/v1/cotizaciones/dolares/{casa}Dólares por casa
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
ArgentinaDatos: common questions
Is ArgentinaDatos free to use?
Yes — ArgentinaDatos is a free open data API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does ArgentinaDatos need an API key?
No — ArgentinaDatos needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call ArgentinaDatos from the browser?
Yes — ArgentinaDatos returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is ArgentinaDatos up right now?
ArgentinaDatos is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.