# Aircanada — 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 Air Canada flights between any two airports and compare pricing across all fare families, from Basic to Business class, along with complete schedule and segment details. Find the perfect flight option with transparent pricing and full flight information to make your booking decision.

**Category:** Travel | **Website:** [www.aircanada.com/](https://www.aircanada.com/) | **Docs:** [parse.bot/marketplace/375b1cfc-4054-4227-a53f-cefe27fc6867/aircanada-com-api](https://parse.bot/marketplace/375b1cfc-4054-4227-a53f-cefe27fc6867/aircanada-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-aircanada-com-api-375b1cfc/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_flights

Search for available Air Canada flights between two airports on a given date. Returns all flight options with detailed pricing, fare rules, aircraft info, and segment details. Supports one-way and round-trip searches with multiple passenger types. Each flight includes segments with aircraft details, and fares across cabin classes (Economy Y, Premium Economy O, Business J) with multiple fare families per cabin.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `adults` | integer | No | Number of adult passengers |
| `children` | integer | No | Number of child passengers |
| `country` | string | No | Country code for pricing (e.g., US, CA) |
| `date` | string | Yes | Departure date in YYYY-MM-DD format |
| `destination` | string | Yes | Destination airport IATA code (e.g., YYZ, YUL, LAX, YVR) |
| `infants_lap` | integer | No | Number of infants on lap |
| `infants_seat` | integer | No | Number of infants with seat |
| `origin` | string | Yes | Origin airport IATA code (e.g., LGA, YVR, JFK, YYZ) |
| `return_date` | string | No | Return date in YYYY-MM-DD format (required when trip_type is RoundTrip) |
| `trip_type` | string | No | Trip type: OneWay or RoundTrip |
| `youth` | integer | No | Number of youth passengers |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-aircanada-com-api-375b1cfc/search_flights \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"adults":"<integer>","children":"<integer>","country":"<string>","date":"<string>","destination":"<string>","infants_lap":"<integer>","infants_seat":"<integer>","origin":"<string>","return_date":"<string>","trip_type":"<string>","youth":"<integer>"}'
```
