# Virginaustralia — 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 Virgin Australia flights and browse fare calendars to find the best prices, while exploring available destinations and current flight specials all in one place. Get real-time flight options and pricing information to plan your next trip with ease.

**Category:** Travel | **Website:** [virginaustralia.com/](https://virginaustralia.com/) | **Docs:** [parse.bot/marketplace/1aa79dde-0470-4b09-abf0-b666f5e3180c/virginaustralia-com-api](https://parse.bot/marketplace/1aa79dde-0470-4b09-abf0-b666f5e3180c/virginaustralia-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-virginaustralia-com-api-1aa79dde/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_available_destinations

Get the full list of supported origin and destination airports grouped by geographical region (Australia, Asia Pacific, North America, UK & Europe). Each airport includes IATA code, name, country, timezone, and geo-coordinates.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-virginaustralia-com-api-1aa79dde/get_available_destinations \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_fare_calendar

Retrieve availability and lowest fares for approximately 30 days around the specified date. Returns one cheapest offer per date, useful for finding the best travel date. Each entry includes departure date, availability status, and lowest fare amount.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `award_booking` | boolean | No | Whether to search for award (points) bookings |
| `cabin_class` | string | No | Cabin class |
| `departure_date` | string | Yes | Center date for the calendar search in YYYY-MM-DD format |
| `destination` | string | Yes | Destination airport IATA code (e.g. MEL, SYD, BNE) |
| `origin` | string | Yes | Origin airport IATA code (e.g. SYD, MEL, BNE) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-virginaustralia-com-api-1aa79dde/get_fare_calendar \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"award_booking":"<boolean>","cabin_class":"<string>","departure_date":"<string>","destination":"<string>","origin":"<string>"}'
```

### get_flight_specials

Retrieve current flight specials and sale fares. Returns fares grouped by origin airport IATA code (lowercase), each containing port_name and an array of sale_items with route details, pricing, fare types, and travel periods.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-virginaustralia-com-api-1aa79dde/get_flight_specials \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_flights

Search for available flights between two airports on a specific date. Returns detailed flight offers including pricing by fare family (Lite, Choice, Flex), segment details, and alternate date pricing. Each offer group in unbundledOffers contains variants for each fare brand. The brandedResults section groups the same data by itinerary part for brand comparison.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `adults` | integer | No | Number of adult passengers |
| `award_booking` | boolean | No | Whether to search for award (points) bookings |
| `cabin_class` | string | No | Cabin class |
| `children` | integer | No | Number of child passengers |
| `departure_date` | string | Yes | Departure date in YYYY-MM-DD format |
| `destination` | string | Yes | Destination airport IATA code (e.g. MEL, SYD, BNE) |
| `infants` | integer | No | Number of infant passengers |
| `origin` | string | Yes | Origin airport IATA code (e.g. SYD, MEL, BNE) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-virginaustralia-com-api-1aa79dde/search_flights \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"adults":"<integer>","award_booking":"<boolean>","cabin_class":"<string>","children":"<integer>","departure_date":"<string>","destination":"<string>","infants":"<integer>","origin":"<string>"}'
```
