# Ambito — 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.

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

**Category:** Finance & Markets | **Website:** [ambito.com/](https://ambito.com/) | **Docs:** [parse.bot/marketplace/ad628bdd-bd71-452a-9bd2-0577be0729fa/ambito-com-api](https://parse.bot/marketplace/ad628bdd-bd71-452a-9bd2-0577be0729fa/ambito-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-ambito-com-api-ad628bdd/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_currency_prices

Extract all current currency prices and market indicators (Dólar BNA, Dólar Blue, Euro, Riesgo País, commodities, etc.) from Ambito.com. Returns the latest available prices with buy/sell rates, variation, and timestamps. No pagination — the full set of ~30 indicators is returned in one call.

**Estimated cost:** Metered

_No parameters required._

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

### get_historical_riesgo_pais

Extract historical 'riesgo país' (country risk) data from Ambito.com for a specified date range. Returns daily values in descending chronological order. Each record contains a date and the country risk value in basis points. The endpoint covers data from 1999 onward.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `end_date` | string | No | End date in DD-MM-YYYY format. Omitting defaults to the current date. |
| `start_date` | string | No | Start date in DD-MM-YYYY format. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ambito-com-api-ad628bdd/get_historical_riesgo_pais \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"end_date":"<string>","start_date":"<string>"}'
```
