> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dev.gojinko.com/llms.txt
> Use this file to discover all available pages before exploring further.

# jinko lowest-fare

> Cheapest fares for a fixed route + date — up to ten itineraries, cheapest first

The cheapest fares for a fixed route and date. Takes the same inputs as Flight Calendar but for one specific departure date (one-way, or with a return date for round-trip) returns up to ten itineraries sorted cheapest-first. The fixed-date counterpart of Flight Calendar — reach for it when the date is locked and you just want the cheapest options that day. Cache-backed; no live pricing. Each result includes an offer token you can pass into a live price check or directly into a trip.

## Usage

```bash theme={null}
jinko lowest-fare [options]
```

## Options

| Flag                        | Required | Description                                                                                      | Default |
| --------------------------- | -------- | ------------------------------------------------------------------------------------------------ | ------- |
| `--origins <codes...>`      | Yes      | origin IATA airport/city codes. JSON: `origins[]`.                                               |         |
| `--destinations <codes...>` | No       | destination IATA airport/city codes. Omit to scan all destinations. JSON: `destinations[]`.      |         |
| `--date <date>`             | Yes      | departure date (YYYY-MM-DD). JSON: `departure_dates[0]`.                                         |         |
| `--return-date <date>`      | No       | return date (YYYY-MM-DD) — makes it a round-trip. JSON: `return_dates[0]`.                       |         |
| `--cabin-class <class>`     | No       | cabin class: economy, premium\_economy, business, first (default: economy). JSON: `cabin_class`. |         |
| `--direct-only`             | No       | only direct flights. JSON: `direct_only`.                                                        |         |
| `--from <origin>`           | No       | DEPRECATED: use --origins.                                                                       |         |
| `--to <destination>`        | No       | DEPRECATED: use --destinations.                                                                  |         |
| `--cabin <class>`           | No       | DEPRECATED: use --cabin-class.                                                                   |         |
