# 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 airports and compare the cheapest flight fares between any two cities across multiple dates with MakeMyTrip's fare calendar to find your best deal. Quickly identify the most affordable travel options and plan your trip with real-time pricing information.

**Category:** Travel | **Website:** [makemytrip.com/](https://makemytrip.com/) | **Docs:** [parse.bot/marketplace/dae81602-f1f1-4e78-831b-8a85c6857270/makemytrip-com-api](https://parse.bot/marketplace/dae81602-f1f1-4e78-831b-8a85c6857270/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-makemytrip-com-api-dae81602/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_fare_calendar

Get cheapest flight fares across multiple dates for a route. Returns fares sorted by price (cheapest first) with airline information. Covers approximately 20-30 dates spanning several months from the reference date. This API is served by MakeMyTrip Global (UAE region); not all currencies are supported upstream.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `currency` | string | No | Currency for fare prices. Confirmed working values: 'USD', 'AED'. Some currencies (e.g., 'INR') may return an upstream error for certain routes. |
| `date` | string | No | Reference date in YYYY-MM-DD format. Fares are shown for dates around this date. Defaults to tomorrow if omitted. |
| `destination` | string | Yes | Destination airport IATA code (e.g., 'BOM', 'DEL', 'CCU') |
| `origin` | string | Yes | Origin airport IATA code (e.g., 'DEL', 'BOM', 'BLR') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-makemytrip-com-api-dae81602/get_fare_calendar \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"currency":"<string>","date":"<string>","destination":"<string>","origin":"<string>"}'
```

### search_airports

Search for airports and cities by name to get IATA codes. Returns matching airports with city, country, and nearby airport information. Use this to resolve human-readable city names into IATA codes before querying the fare calendar.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of results to return |
| `query` | string | Yes | City or airport name to search for (e.g., 'Delhi', 'Mumbai', 'London') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-makemytrip-com-api-dae81602/search_airports \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","query":"<string>"}'
```
