argenstats.com APIargenstats.com ↗
Access Argentine EMAE, IPC inflation, dollar exchange rates (BLUE, CCL, MEP), country risk, employment, and poverty data via the ArgenStats API.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/3cbc1338-8909-457b-bbc4-19db0a0d3b60/get_emae' \ -H 'X-API-Key: $PARSE_API_KEY'
Retrieve the current EMAE (Estimador Mensual de Actividad Económica) values including current index, sector breakdown, historical data, and statistics.
No input parameters required.
{
"type": "object",
"fields": {
"stats": "object with lastUpdate, general summary, topGrowthSectors, and topDeclineSectors",
"current": "object containing date, sector info, and values (index, seasonallyAdjusted, cycleTrend, monthly, yearly, cycleTrendVariation)",
"sectors": "array of sector objects with sector code/name and values (index, monthly, yearly)",
"historical": "array of monthly data points with date and values"
},
"sample": {
"data": {
"stats": {
"general": {
"index": 138.2,
"yearly": -2.1,
"monthly": -2.6
},
"lastUpdate": "2026-02-28"
},
"current": {
"date": "2026-02-28",
"sector": {
"code": "GENERAL",
"name": "Nivel general"
},
"values": {
"index": 138.2,
"yearly": -2.1,
"monthly": -2.6,
"cycleTrend": 152.79,
"seasonallyAdjusted": 151.68,
"cycleTrendVariation": 0.1
}
},
"sectors": [
{
"sector": {
"code": "A",
"name": "Agricultura"
},
"values": {
"index": 81.26,
"yearly": 8.4,
"monthly": -29.2
}
}
],
"historical": [
{
"date": "2025-05-31",
"values": {
"index": 164.88,
"yearly": 5.2,
"monthly": -0.2,
"seasonallyAdjusted": 151.67
}
}
]
},
"status": "success"
}
}About the argenstats.com API
The ArgenStats API exposes 9 endpoints covering Argentina's core macroeconomic indicators: activity index (EMAE), consumer price inflation (IPC), seven dollar exchange rate types, country risk, unemployment, poverty, and forecasting events. The get_dolar_cotizaciones endpoint alone returns buy/sell/avg prices for BLUE, CCL, CRYPTO, MAYORISTA, MEP, OFICIAL, and TARJETA in a single call, while get_riesgo_pais includes JP Morgan data, daily variations, and rolling period statistics.
Economic Activity and Inflation
The get_emae endpoint returns the current EMAE (Estimador Mensual de Actividad Económica) including the general index, seasonally-adjusted series, cycle-trend values, and monthly/yearly variation. It also provides a sector breakdown across codes A through P and O, plus lists of top-growth and top-decline sectors. For time-series work, get_emae_historical accepts a period (number of months) and a sector code; when both are supplied, the response returns only the historical array and sets current and sectors to null. The get_ipc endpoint covers the CPI with component-level detail — bienes, servicios, and rubros — along with accumulated and yearly variation fields.
Dollar Exchange Rates and Country Risk
get_dolar_cotizaciones returns the latest quotes for all seven Argentine dollar types in a flat object keyed by type name, each with buy, sell, and avg fields. get_dolar_historical extends this to a 90-day daily series and adds a summary object with count, avgPrice, minPrice, maxPrice, startPrice, endPrice, and variation. get_riesgo_pais surfaces the current basis-point value, daily/weekly/monthly/quarterly/yearly and YTD variations, a jpMorganData block with official, estimated, and difference values, and a periodsData array of named-period summaries.
Labor, Poverty, and Events
get_empleo returns quarterly unemployment data for the last five years, with each data point carrying date, value, region, and indicator fields. get_pobreza covers both poverty and indigence rates — at the person and household level — including a current object with period-on-period variation, a semi-annual historical array back to 2016, and a regionalComparison array ranking Argentina's regions by poverty and indigence rate. get_eventos lists active forecasting competition events on ArgenStats, returning each event's href, title, and full_text slug.
- Track Argentine peso depreciation by charting all seven dollar types from
get_dolar_historicalover a 90-day window. - Build an inflation dashboard using IPC component breakdowns (bienes, servicios, rubros) from
get_ipc. - Monitor EMAE sector performance by filtering
get_emae_historicalto a specific sector code and period. - Alerting system for country risk spikes using
get_riesgo_paisdaily and weekly variation fields. - Regional poverty analysis comparing poverty and indigence rankings across Argentine provinces via
get_pobrezaregionalComparison. - Quarterly unemployment trend visualization using
get_empleohistorical series for the past five years. - Aggregate macroeconomic reporting tool combining EMAE, IPC, and country risk endpoints into a unified Argentina economic snapshot.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does ArgenStats have an official developer API?+
What does get_dolar_historical return beyond raw prices?+
series array includes buy, sell, and avg for all seven dollar types (BLUE, CCL, CRYPTO, MAYORISTA, MEP, OFICIAL, TARJETA). The response also includes a summary object with count, avgPrice, minPrice, maxPrice, startPrice, endPrice, and variation across the 90-day window.How far back does the historical data go for each indicator?+
get_dolar_historical, unemployment covers the last 5 years quarterly via get_empleo, poverty data in get_pobreza includes a semi-annual series from 2016, and EMAE history is controlled by the period parameter in get_emae_historical.Does the API provide intraday or real-time dollar quotes?+
Are economic indicators for Argentine provinces other than national aggregates available?+
get_pobreza. EMAE, IPC, and employment endpoints return national-level figures only. You can fork this API on Parse and revise it to add province-level breakdowns for those indicators.