Discover/argenstats.com API
live

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.

Endpoints
9
Updated
1mo ago
Try it

No input parameters required.

api.parse.bot/scraper/3cbc1338-8909-457b-bbc4-19db0a0d3b60/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/3cbc1338-8909-457b-bbc4-19db0a0d3b60/get_emae' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 9 totalclick to expand

Retrieve the current EMAE (Estimador Mensual de Actividad Económica) values including current index, sector breakdown, historical data, and statistics.

Input

No input parameters required.

Response
{
  "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.

Common use cases
  • Track Argentine peso depreciation by charting all seven dollar types from get_dolar_historical over 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_historical to a specific sector code and period.
  • Alerting system for country risk spikes using get_riesgo_pais daily and weekly variation fields.
  • Regional poverty analysis comparing poverty and indigence rankings across Argentine provinces via get_pobreza regionalComparison.
  • Quarterly unemployment trend visualization using get_empleo historical series for the past five years.
  • Aggregate macroeconomic reporting tool combining EMAE, IPC, and country risk endpoints into a unified Argentina economic snapshot.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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.

Frequently asked questions
Does ArgenStats have an official developer API?+
ArgenStats does not publish an official public developer API or documented REST endpoints for external consumption.
What does get_dolar_historical return beyond raw prices?+
Each daily entry in the 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?+
Coverage varies by indicator: dollar rates go back 90 days in 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?+
The current endpoints return the latest available quote as of the date field in the response; they do not provide intraday tick data or streaming prices. You can fork this API on Parse and revise it to add an intraday polling endpoint if that granularity is needed.
Are economic indicators for Argentine provinces other than national aggregates available?+
Regional data is currently limited to the poverty and indigence regional comparison in 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.
Page content last updated . Spec covers 9 endpoints from argenstats.com.
Related APIs in FinanceSee all →
ambito.com API
Access real-time currency exchange rates and historical country risk data from Argentina's financial markets. Monitor peso valuations and analyze long-term sovereign risk trends.
bcra.gob.ar API
Access regulations, communications, and news from Argentina's Central Bank while retrieving real-time monetary variables and economic indicators. Search BCRA communications by type, date, or number, and monitor the latest financial statistics and homepage data all in one place.
tradingeconomics.com API
Access real-time economic calendars, macroeconomic indicators, and commodity prices across global markets including G20 nations and emerging economies. Monitor historical charts, country-specific economic data, and the latest financial news to track economic trends and make informed investment decisions.
rba.gov.au API
Access Reserve Bank of Australia data including CPI inflation (current and historical), housing and business lending rates, AUD exchange rates, monetary policy/cash rate changes, and the RBA balance sheet.
infodolar.com API
Retrieve real-time exchange rates for the US Dollar, Euro, and Brazilian Real from InfoDolar.com, including market-type breakdowns (Blue, MEP, CCL, Official, and more) and individual bank or exchange-house quotations in Argentine Pesos.
resbank.co.za API
Access real-time and historical financial data from South Africa's central bank, including prime rates, repo rates, exchange rates, inflation metrics (CPI and PPI), and commodity prices like gold. Track key interest rate benchmarks such as SABOR and ZARONIA rates, and monitor market rates to stay informed on South African economic indicators.
data.stats.gov.cn API
Access comprehensive statistical data, economic indicators, and official reports from China's National Bureau of Statistics through simple searches and structured queries. Retrieve detailed articles, data releases, indicator trends, and downloadable documents to analyze China's economic and social statistics.
worldmonitor.app API
Monitor global events and geopolitical developments in real-time by accessing live conflict reports, military movements, cyber threats, economic indicators, maritime activity, and 15 other critical intelligence categories. Track everything from supply chain disruptions and infrastructure status to market quotes, weather patterns, and displacement data to stay ahead of worldwide geopolitical shifts.