---
title: "Flight"
url: "https://kiwi.arashsheyda.me/apis/flight-api-1/versions/aee2ad99-0bb8-44ab-b301-bc1bc967464e/schemas/Flight"
---

> Full API specification: https://kiwi.arashsheyda.me/apis/flight-api-1/versions/aee2ad99-0bb8-44ab-b301-bc1bc967464e.md

# Flight

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: Flight API
  version: 1.0.1
servers:
  - url: https://api.example.com/v1
components:
  schemas:
    Flight:
      type: object
      properties:
        id:
          type: string
        airline:
          type: string
        flight_number:
          type: string
        origin:
          type: string
        destination:
          type: string
        departure_time:
          type: string
          format: date-time
        arrival_time:
          type: string
          format: date-time
        price:
          type: number
          format: float
```
