> ## 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 flight-calendar

> Search flights between a known origin and destination for flexible dates

Find priced itineraries between a known origin and destination using cached results, ideal when the user is flexible on dates. It answers questions like "cheapest week to fly Paris to Barcelona in June" or "best Friday to Sunday options from JFK to LAX next month". Each result includes an offer token you can pass into a live price check or directly into a trip.

## Usage

```bash theme={null}
jinko flight-calendar [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[]`.      |         |
| `--month <month>`           | No       | month to display (YYYY-MM), defaults to current month                                            |         |
| `--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`.                                                        |         |
| `--limit <n>`               | No       | max results to return per page (1-100, default 20). JSON: `limit`.                               |         |
| `--offset <n>`              | No       | number of results to skip, for pagination (default 0). JSON: `offset`.                           |         |
| `--from <origin>`           | No       | DEPRECATED: use --origins.                                                                       |         |
| `--to <destination>`        | No       | DEPRECATED: use --destinations.                                                                  |         |
| `--cabin <class>`           | No       | DEPRECATED: use --cabin-class.                                                                   |         |

## Examples

```bash theme={null}
# Cheapest days JFK → CDG in June
jinko flight-calendar --origins JFK --destinations CDG --month 2026-06
```
