# Awx — 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 data from awx.pro.

**Category:** Web3 & Onchain | **Website:** [awx.pro/ru/exchange?side=BUY](https://awx.pro/ru/exchange?side=BUY) | **Docs:** [parse.bot/marketplace/aebc5e44-1704-4687-9ec8-dcaed2d2e318/awx-pro-api](https://parse.bot/marketplace/aebc5e44-1704-4687-9ec8-dcaed2d2e318/awx-pro-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-awx-pro-api-aebc5e44/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_exchange_offers

Returns available crypto exchange offers with live rates. Each offer includes the exchange rate, fiat/crypto pair, trade limits, and the physical office or virtual location where the exchange is conducted. Results are filtered by trade side (buy or sell crypto), cryptocurrency, and optionally fiat currency.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `crypto` | string | No | Cryptocurrency ticker to filter offers (e.g. USDT). |
| `fiat` | string | No | Fiat currency code to filter offers (e.g. RUR, USD). When empty, all fiat currencies are returned. |
| `side` | string | No | Trade direction from the user's perspective. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-awx-pro-api-aebc5e44/list_exchange_offers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"crypto":"<string>","fiat":"<string>","side":"<string>"}'
```
