# Infodolar — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> 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.

**Category:** Finance & Markets | **Website:** [infodolar.com/](https://infodolar.com/) | **Docs:** [parse.bot/marketplace/56eb1673-48b4-498e-933a-a7339afd0340/infodolar-com-api](https://parse.bot/marketplace/56eb1673-48b4-498e-933a-a7339afd0340/infodolar-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-infodolar-com-api-56eb1673/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_dolar_blue_cordoba

Get the current Dólar Blue exchange rate in Córdoba, Argentina. Returns a single rate object with buy/sell prices, variation, spread, and timestamp.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-infodolar-com-api-56eb1673/get_dolar_blue_cordoba \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_dolar_rates

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.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-infodolar-com-api-56eb1673/get_dolar_rates \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_euro_rates

Get current Euro exchange rates in Argentine Pesos. Returns two groups: market-level average rates (Promedio InfoDolar) and individual bank/exchange entity rates. Each rate includes buy/sell prices, percentage variation, spread, and timestamp.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-infodolar-com-api-56eb1673/get_euro_rates \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_real_rates

Get current Brazilian Real exchange rates in Argentine Pesos. Returns two groups: market-level average rates (Promedio InfoDolar) and individual bank/exchange entity rates. Each rate includes buy/sell prices, percentage variation, spread, and timestamp.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-infodolar-com-api-56eb1673/get_real_rates \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
