Retrieve bulk cached Seats.aero award availability for a mileage program, option
Retrieve bulk cached Seats.aero award availability for a mileage program, optionally filtered by region, date, and cabin.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
251 msmedian answer time
$0.04listed price per call
$0.04price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://stabletravel.dev/api/seats-aero/availability
| Category | Everything else |
|---|---|
| Provider host | stabletravel.dev |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 330 from 3 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.04 | 251 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"cabin": "business",
"destination_region": "Europe",
"end_date": "2026-12-31",
"origin_region": "North America",
"source": "united",
"start_date": "2026-12-01",
"take": 100
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"cabin": {
"description": "Award cabin to require",
"enum": [
"economy",
"premium",
"business",
"first"
],
"type": "string"
},
"cursor": {
"description": "Cursor from a previous Seats.aero response",
"maximum": 9007199254740991,
"minimum": -9007199254740991,
"type": "integer"
},
"destination_region": {
"enum": [
"North America",
"South America",
"Africa",
"Asia",
"Europe",
"Oceania"
],
"type": "string"
},
"end_date": {
"description": "Latest departure date",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"type": "string"
},
"origin_region": {
"enum": [
"North America",
"South America",
"Africa",
"Asia",
"Europe",
"Oceania"
],
"type": "string"
},
"skip": {
"description": "Number of results to skip",
"maximum": 9007199254740991,
"minimum": 0,
"type": "integer"
},
"source": {
"description": "Seats.aero mileage program source, such as united or aeroplan",
"minLength": 1,
"type": "string"
},
"start_date": {
"description": "Earliest departure date",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"type": "string"
},
"take": {
"description": "Number of results to return, 10 to 1000",
"maximum": 1000,
"minimum": 10,
"type": "integer"
}
},
"required": [
"source"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}