infodolar.com 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.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/2e897ac9-994a-4f11-a08a-75e7c6ad8d09/get_dolar_rates' \ -H 'X-API-Key: $PARSE_API_KEY'
Get current US Dollar exchange rates for different market types (Blue, MEP, CCL, mayorista, tarjeta, etc.) and individual bank/exchange entity rates in Argentine Pesos.
No input parameters required.
{
"type": "object",
"fields": {
"entity_rates": "array of bank/exchange entity rate objects with entity, buy, sell, variation, spread, and timestamp",
"market_rates": "array of market-level rate objects (Blue, MEP, CCL, promedio, tarjeta, mayorista) with entity, buy, sell, variation, spread, and timestamp"
},
"sample": {
"data": {
"entity_rates": [
{
"buy": 1365,
"sell": 1415,
"entity": "Banco Nación",
"spread": 50,
"timestamp": "2026-05-13T17:58:00-03:00",
"variation": "0,71 %"
}
],
"market_rates": [
{
"buy": 1400,
"sell": 1420,
"entity": "Dólar Blue",
"spread": 20,
"timestamp": "2026-05-13T17:58:00-03:00",
"variation": "0,35 %"
},
{
"buy": 1424.83,
"sell": 1425.21,
"entity": "Dólar MEP",
"spread": 0.38,
"timestamp": "2026-05-13T17:59:00-03:00",
"variation": "0,49 %"
}
]
},
"status": "success"
}
}About the infodolar.com 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.
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.
- 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_ratesat 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
| 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 InfoDolar have an official developer API?+
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?+
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.