---
title: "Get Flight Price History"
method: GET
path: "/ad-deals/flights/{route_slug}/price-history"
tags: ["ad-deals"]
---

# Get Flight Price History

`GET /ad-deals/flights/{route_slug}/price-history`

Public read-only price-history for a flight route (SEO route pages).

Mirrors the ad-deal endpoint's route resolution + rate limit, but returns a
normalized SerpAPI price-history series instead of live bookable fares. The
content path writes no DB rows and is cached for 24h.

## Path parameters

- `route_slug` string, required

## Query parameters

- `departure_date` string, date, nullable — Representative departure date (YYYY-MM-DD).
- `return_date` string, date, nullable — Representative return date (YYYY-MM-DD).
- `utm_origin` string, nullable
- `utm_destination` string, nullable
- `timezone` string, nullable

## Response `200`

Successful Response

- FlightPriceHistoryResponse
  - `route_slug` string, required
  - `origin` AdPlace, required
    - `name` string, required
    - `code` string, required
  - `destination` AdPlace, required
    - `name` string, required
    - `code` string, required
  - `defaults` FlightSearchDefaults, required
    - `departure_date` string, date, nullable
    - `return_date` string, date, nullable
    - `trip_length_days` integer, nullable
    - `passengers` integer, nullable
    - `cabin_class` string, nullable
    - `outbound_only_display` boolean, nullable
  - `searched_at` string, date, required
  - `price_level` string, nullable
  - `typical_low_cents` integer, nullable
  - `typical_high_cents` integer, nullable
  - `typical_swing_cents` integer, nullable
  - `price_history` PriceHistoryPoint[], nullable
    - `date` string, required
    - `price_cents` integer, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/helloaxel/apis/client-api-gateway.md) · [All operations](https://skmtc.dev/helloaxel/apis/client-api-gateway/llms.txt) · [OpenAPI document](https://skmtc.dev/helloaxel/apis/client-api-gateway/revisions/106d2d712b27?raw)
