llms.txt Content
# RowHint — Airline Seat Intelligence
> RowHint rates every seat on the plane with 1-10 scores and plain-English notes. Covers 13 US airlines with 68 aircraft configurations.
## What this site provides
- Per-seat ratings (1-10) with color coding (green/yellow/red)
- Seat pitch, width, recline data for every seat
- Window alignment issues, underseat storage, armrest tray warnings
- Best and worst seats grouped by cabin class
- Airlines: Alaska, Allegiant, American, Breeze, Delta, Frontier, Hawaiian, JetBlue, Southwest, Spirit, Sun Country, United
- Free JSON API: POST /api/v1/pick (flight number → seat recommendations), plus GET endpoints for seats, configs, compare, windowless
- OpenAPI 3.1 spec at /api/openapi.json
- MCP server at https://mcp.rowhint.com/mcp (6 tools, Streamable HTTP transport)
## How to find seat data
- /airlines — list of all covered airlines
- /[airline-slug]/[aircraft-slug] — individual seat map with ratings
- /seatguru-alternative — overview for travelers looking for SeatGuru replacement
- /guides — editorial seat selection guides
- POST /api/v1/pick — seat recommendations by flight number, with preferences (JSON)
- /api/v1/configs — machine-readable config catalog (JSON)
- /api/v1/seats?config_id=UA-738 — full seat data for a configuration (JSON)
- /api/v1/seat?config_id=UA-738&seat=21A — single seat score and notes (JSON)
- /api/v1/seats/best?config_id=UA-738 — ranked best seats by cabin (JSON)
- /api/v1/compare?config_id=UA-738&seat_a=14A&seat_b=22F — compare two seats side by side (JSON)
- /api/v1/windowless?config_id=UA-738 — windowless seat list (JSON)
## Data format
- Every seat has: score (1-10), color_code (green/yellow/red/gray), pitch_inches, width_inches, recline_inches, short_note, cabin_class
- Configurations include: total_seats, layout_pattern, exit_rows, facilities (galleys, lavatories, dividers)
- Confidence levels: verified (confirmed against airline source) or inferred (derived from specs/patte
OpenAPI Spec (preview)
{"openapi":"3.1.0","info":{"title":"RowHint Seat Intelligence API","description":"Query airline seat ratings, scores, and notes for US airline flights. Covers 10 US airlines. Call GET /api/v1/configs for the current catalog.\n\n**Quick start:**\n1. Call `GET /api/v1/configs` to list all available aircraft\n2. Call `POST /api/v1/pick` with a flight number to get seat recommendations\n3. Call `GET /api/v1/seats?config_id=UA-77W` to get seat data for a specific aircraft\n4. Call `GET /api/v1/seat?c