# Mapi Makemytrip — 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.

> Search for cities and discover popular flight destinations with autocomplete suggestions and travel recommendations. Access client configuration settings to customize your travel planning experience on MakeMyTrip.

**Category:** Travel | **Website:** [mapi.makemytrip.com/](https://mapi.makemytrip.com/) | **Docs:** [parse.bot/marketplace/4013350a-e467-478e-af33-cde2a786e02f/mapi-makemytrip-com-api](https://parse.bot/marketplace/4013350a-e467-478e-af33-cde2a786e02f/mapi-makemytrip-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-mapi-makemytrip-com-api-4013350a/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_city_autocomplete

Search for cities and airports by keyword. Returns a list of matching locations with IATA codes, airport names, city names, and country information grouped under a SUGGESTIONS section. The query matches against city names, airport names, and IATA codes. Results include nearby airports when available.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword for city or airport name (e.g. 'Delhi', 'Mumbai', 'Goa', 'BOM'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mapi-makemytrip-com-api-4013350a/get_city_autocomplete \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```

### get_client_config

Get general flight search configuration including special fare types (Student, Armed Forces, Corporate), UI display options, and color configuration. No input parameters required. Useful for understanding available fare categories and their eligibility constraints.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mapi-makemytrip-com-api-4013350a/get_client_config \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_popular_destinations

Get a list of popular travel destinations including popular searches, e-visa destinations, and visa-free/visa-on-arrival destinations. No input parameters required. Returns multiple sections with different destination categories.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mapi-makemytrip-com-api-4013350a/get_popular_destinations \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
