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

> Get real-time AED exchange rates and transfer details for all supported remittance corridors on Careem's money transfer service. Compare rates instantly to find the best deals for sending money internationally.

**Category:** Finance & Markets | **Website:** [www.careem.com/?srsltid=AfmBOooNABiZ0nFDUExxQGi9Ic4momKDSaSd2HiAcByPYgLf3HyQqQOC](https://www.careem.com/?srsltid=AfmBOooNABiZ0nFDUExxQGi9Ic4momKDSaSd2HiAcByPYgLf3HyQqQOC) | **Docs:** [parse.bot/marketplace/a5a1ced8-f79a-4279-976f-b8c2bd0793aa/careem-com-api](https://parse.bot/marketplace/a5a1ced8-f79a-4279-976f-b8c2bd0793aa/careem-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-careem-com-api-a5a1ced8/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_exchange_rates

Returns current AED exchange rates for all supported remittance corridors. Each corridor includes the destination country, currency, exchange rate (rounded to 4 decimal places), transfer fee, minimum/maximum send amounts, and estimated delivery time. Optionally filter by destination currency.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `destination_currency` | string | No | Filter results by destination currency code (ISO 4217). Case-insensitive. Accepted values confirmed: INR, GBP, PKR, PHP, BDT, SAR, EGP, TRY, USD, JOD, CAD, EUR. When omitted, all corridors are returned. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-careem-com-api-a5a1ced8/get_exchange_rates \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"destination_currency":"<string>"}'
```
