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
14d 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 →
mazda.ca API
Find current vehicle deals, financing rates, lease options, and incentives across all Mazda Canada models and trims, with pricing tailored to your province. Get instant payment quotes to compare your options and discover the best offers available.
13f.info API
13f.info API
etoro.com API
Monitor top eToro traders by accessing their profiles, portfolio holdings, performance statistics, and trading history to inform your investment decisions. Discover trending stocks and cryptocurrencies, search for specific instruments, and view detailed market data and news to stay updated on investment opportunities.
vegasinsider.com API
Retrieve MLB betting odds from major sportsbooks including bet365, FanDuel, and DraftKings, covering Moneyline, Total, and Runline markets for any supported date. Easily compare odds across books to identify the best available lines.
bizapedia.com API
Search for detailed business profiles and contact information from Bizapedia, including company details, employee data, and communication channels. Access comprehensive business intelligence to research companies and build targeted contact lists.
customs.gov.mv API
Check import/export duties, tariff classifications, and exchange rates for Maldives customs compliance, plus track vessel movements, company registrations, and declaration statuses. Get real-time data directly from the official customs portal to streamline your trade and logistics operations.
morningstar.com.au API
Access comprehensive financial data for Australian stocks, ETFs, and managed funds including key metrics, valuations, dividends, and historical prices. Search securities, review company profiles and ownership details, and stay informed with market news and upcoming dividend information.
immobiliare.it API
Search Italian property listings for sale or rent, browse real estate agencies, and explore price trends across Italian cities — all via immobiliare.it.