Discover/InfoDolar API
live

InfoDolar APIinfodolar.com

Get live USD, EUR, and BRL exchange rates in Argentine Pesos via the InfoDolar API. Covers Blue, MEP, CCL, tarjeta, and bank-specific quotes.

Endpoint health
verified 6d ago
get_dolar_rates
get_euro_rates
get_real_rates
3/3 passing latest checkself-healing
Endpoints
3
Updated
26d ago

What is the InfoDolar API?

The InfoDolar API exposes 3 endpoints returning current Argentine Peso exchange rates for the US Dollar, Euro, and Brazilian Real. The get_dolar_rates endpoint alone covers up to six distinct market types — Blue, MEP, CCL, mayorista, tarjeta, and promedio — alongside individual buy/sell quotes from dozens of banks and exchange houses, with spread and intraday variation included in every response.

Try it

No input parameters required.

api.parse.bot/scraper/2e897ac9-994a-4f11-a08a-75e7c6ad8d09/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/2e897ac9-994a-4f11-a08a-75e7c6ad8d09/get_dolar_rates' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace infodolar-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: InfoDolar SDK — fetch live Argentine exchange rates."""
from parse_apis.infodolar_argentina_exchange_rates_api import InfoDolar, UpstreamError

client = InfoDolar()

# Fetch US Dollar rates — market-level and per-bank
dolar = client.dolars.get()
print("=== USD Market Rates ===")
for rate in dolar.market_rates:
    print(f"  {rate.entity}: buy={rate.buy}, sell={rate.sell}, variation={rate.variation}")

print(f"\n=== USD Bank Rates ({len(dolar.entity_rates)} entities) ===")
for rate in dolar.entity_rates[:3]:
    print(f"  {rate.entity}: buy={rate.buy}, sell={rate.sell}, spread={rate.spread}")

# Fetch Euro rates
euro = client.euros.get()
print(f"\n=== EUR Market Average ===")
for rate in euro.market_rates:
    print(f"  {rate.entity}: buy={rate.buy}, sell={rate.sell}")

# Fetch Brazilian Real rates with error handling
try:
    real = client.reals.get()
    print(f"\n=== BRL Market Average ===")
    for rate in real.market_rates:
        print(f"  {rate.entity}: buy={rate.buy}, sell={rate.sell}, timestamp={rate.timestamp}")
except UpstreamError as exc:
    print(f"Failed to fetch Real rates: {exc}")

print("\nexercised: dolars.get / euros.get / reals.get")
All endpoints · 3 totalmissing one? ·

Get current US Dollar exchange rates in Argentine Pesos. Returns two groups: market-level rates (Blue, MEP, CCL, mayorista, tarjeta, promedio) and individual bank/exchange entity rates. Each rate includes buy/sell prices, percentage variation, spread, and timestamp.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "entity_rates": "array of bank/exchange entity rate objects",
    "market_rates": "array of market-level rate objects (Blue, MEP, CCL, promedio, tarjeta, mayorista)"
  },
  "sample": {
    "data": {
      "entity_rates": [
        {
          "buy": 1405,
          "sell": 1455,
          "entity": "Banco Nación",
          "spread": 50,
          "timestamp": "2026-06-10T18:00:00-03:00",
          "variation": "-0,34 %"
        }
      ],
      "market_rates": [
        {
          "buy": 1430,
          "sell": 1450,
          "entity": "Dólar Blue",
          "spread": 20,
          "timestamp": "2026-06-10T18:00:00-03:00",
          "variation": "-0,68 %"
        },
        {
          "buy": 1453.43,
          "sell": 1455.18,
          "entity": "Dólar MEP",
          "spread": 1.75,
          "timestamp": "2026-06-10T18:00:00-03:00",
          "variation": "-0,25 %"
        }
      ]
    },
    "status": "success"
  }
}

About the InfoDolar API

What the API Returns

All three endpoints — get_dolar_rates, get_euro_rates, and get_real_rates — return two arrays: market_rates and entity_rates. Every object in both arrays includes entity (name of the market type or financial institution), buy, sell, variation (intraday change), spread, and timestamp. No input parameters are required; each call returns the full current snapshot.

Dollar Endpoint in Detail

get_dolar_rates provides the widest market_rates coverage of the three endpoints. It distinguishes between the informal Blue rate, the MEP (Mercado Electrónico de Pagos) rate, the CCL (Contado con Liquidación) rate, the official wholesale rate (mayorista), the card rate (tarjeta), and the market average (promedio). These are the rate types most relevant to Argentine financial applications, as they reflect different legal and informal currency channels.

Euro and Real Endpoints

get_euro_rates and get_real_rates follow the same response shape but with narrower market_rates coverage: both return a single Promedio InfoDolar average rather than the multi-type breakdown seen in the dollar endpoint. Their entity_rates arrays still cover individual bank and exchange-house quotes with the same buy, sell, variation, spread, and timestamp fields.

Coverage Notes

All rates are denominated in Argentine Pesos (ARS). The API reflects the data published on infodolar.com, which aggregates quotes from Argentine banks and exchange entities. There is no historical endpoint; each call returns only the current snapshot. Timestamps are included per entity record, so you can detect how recently a given institution updated its quote.

Reliability & maintenanceVerified

The InfoDolar API is a managed, monitored endpoint for infodolar.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when infodolar.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official infodolar.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
6d ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Display real-time Blue and official dollar rates side-by-side in an Argentine personal finance app
  • Track MEP and CCL rate spreads over time by polling get_dolar_rates at regular intervals
  • Build a bank comparison tool showing which Argentine entity offers the best sell rate for USD
  • Alert users when the Blue-to-official dollar spread crosses a defined threshold
  • Incorporate Euro buy/sell quotes from multiple Argentine banks into a travel budgeting tool
  • Monitor intraday variation fields across entities to detect rate movement in ARS/BRL
  • Feed current tarjeta (card) dollar rates into an expense-tracking app for Argentine cardholders
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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 InfoDolar have an official developer API?+
InfoDolar does not publish a documented public developer API. The Parse API is an independent way to access the rate data InfoDolar displays on its site.
What distinguishes the market_rates and entity_rates arrays in get_dolar_rates?+
market_rates contains aggregate or named market types such as Blue, MEP, CCL, mayorista, tarjeta, and promedio — each representing a distinct currency channel in Argentina. entity_rates contains one record per bank or exchange house, with that institution's own published buy and sell quotes. Both arrays share the same fields: entity, buy, sell, variation, spread, and timestamp.
Do get_euro_rates and get_real_rates include the same market breakdowns as the dollar endpoint?+
No. For Euro and Brazilian Real, market_rates returns only the Promedio InfoDolar average, not a full breakdown of Blue, MEP, CCL, and other channels. Those multi-type market breakdowns are specific to get_dolar_rates. The entity_rates arrays for all three currencies follow the same structure and cover individual bank quotes.
Does the API provide historical exchange rate data?+
Not currently. All three endpoints return only the current rate snapshot; there is no historical or time-series endpoint. You can fork this API on Parse and revise it to add an endpoint that stores and queries historical snapshots.
Are exchange rates for currencies other than USD, EUR, and BRL available?+
Not currently. The API covers Argentine Peso rates for US Dollars, Euros, and Brazilian Reals only. If you need rates for other currencies quoted on InfoDolar, you can fork this API on Parse and revise it to add the missing endpoint.
Page content last updated . Spec covers 3 endpoints from infodolar.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.
x-rates.com API
x-rates.com API
argenstats.com API
Access Argentina's key economic indicators including the EMAE activity index, inflation (IPC), dollar exchange rates (BLUE, CCL, MEP, OFICIAL, and more), country risk, employment, and poverty levels. Retrieve current values, historical series, and forecasting event listings from ArgenStats.
xe.com API
Access live mid-market exchange rates, convert between any currency pair, and retrieve historical rate data and currency metadata from xe.com.
infomoney.com.br API
Track Brazilian stocks, currencies, and cryptocurrencies with real-time quotes, historical OHLCV data, fundamentals, and dividends. Access intraday price movements, top B3 movers, exchange rates, and market news from InfoMoney.
euribor-rates.eu API
Access current and historical Euribor 6-month interest rates to track lending benchmarks and analyze rate trends over time. Monitor real-time rate changes and retrieve past data to inform financial decisions and pricing strategies.
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.
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.