> ## Documentation Index
> Fetch the complete documentation index at: https://docs.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

<Note>
  **Prices in this command's output are integers in minor units.** Money objects
  carry `decimal_places` — divide by `10 ** decimal_places` to display
  (`{ "value": 15977, "decimal_places": 2 }` is **159.77**, not 15,977). See
  [Money & prices](/concepts/money).
</Note>

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`.                                                                                                                                 |         |
| `--user-intent <text>`      | No       | the end user's request in their own words, forwarded to Jinko for observability and relevance (avoid PII). Env fallback: JINKO\_USER\_INTENT. JSON: `intent.user_intent`. |         |
