Use when an agent needs seats aero search
Use when an agent needs seats aero search. Returns Search award-flight inputs using a stable Seats.aero-compatible request and response shape without claiming unavailable inventory. $0.02.
20000 (raw units)
price
6
calls / 30d
1
unique payers
2026-09-07
updated
Provider
api.oblique.markets · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x970007590aCC5C938cd51345B17AF51B1B40D3Ab",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "GYyTRmt317JafPHXPnM54Fsvsma5GnS9wm6qGMqaykdS",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "20000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"destination_airports": [
"example"
],
"end_date": "example",
"origin_airports": [
"example"
],
"start_date": "example"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"availability": "not_claimed",
"count": 0,
"generated_at": "2026-08-25T12:00:00.000Z",
"note": "No Seats.aero credentials are held by Oblique; this equivalent preserves the machine-search shape without fabricating award availability.",
"results": [],
"search": {
"cabin": "economy",
"destination_airports": [
"LAX"
],
"end_date": "2026-09-07",
"origin_airports": [
"JFK"
],
"passengers": 1,
"start_date": "2026-09-01"
},
"source": "oblique_request_normalizer"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"cabin": {
"enum": [
"economy",
"premium_economy",
"business",
"first"
],
"type": "string"
},
"destination_airports": {
"items": {
"type": "string"
},
"type": "array"
},
"end_date": {
"type": "string"
},
"origin_airports": {
"items": {
"type": "string"
},
"type": "array"
},
"passengers": {
"type": "integer"
},
"start_date": {
"type": "string"
}
},
"required": [
"origin_airports",
"destination_airports",
"start_date",
"end_date"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"availability": {
"type": "string"
},
"count": {
"type": "integer"
},
"generated_at": {
"type": "string"
},
"note": {
"type": "string"
},
"results": {
"type": "array"
},
"search": {
"properties": {
"cabin": {
"type": "string"
},
"destination_airports": {
"items": {
"type": "string"
},
"type": "array"
},
"end_date": {
"type": "string"
},
"origin_airports": {
"items": {
"type": "string"
},
"type": "array"
},
"passengers": {
"type": "integer"
},
"start_date": {
"type": "string"
}
},
"type": "object"
},
"source": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.oblique.markets/api/v1/paid/seats-aero-search" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.oblique.markets/api/v1/paid/seats-aero-search");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.oblique.markets/api/v1/paid/seats-aero-search")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/565.json, and this resource appears in /discovery/resources and /discovery/search.