← oblique.markets · all endpoints

POST /api/v1/paid/seats-aero-search — $0.02 per call

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.

Price$0.02 per call (20000 atomic USDC, scheme exact)
Categorytravel-data
Railsx402 · USDC on Base (eip155:8453) and Solana · MPP pathUSD on Tempo
Canonical URLhttps://api.oblique.markets/api/v1/paid/seats-aero-search

Try it

curl -i https://api.oblique.markets/api/v1/paid/seats-aero-search
# → HTTP 402 with the exact payment requirements; pay, then retry with PAYMENT-SIGNATURE (x402) or Authorization: Payment (MPP)

Input schema

{
 "type": "object",
 "required": [
  "origin_airports",
  "destination_airports",
  "start_date",
  "end_date"
 ],
 "properties": {
  "origin_airports": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "minItems": 1,
   "maxItems": 20
  },
  "destination_airports": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "minItems": 1,
   "maxItems": 20
  },
  "start_date": {
   "type": "string",
   "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
  },
  "end_date": {
   "type": "string",
   "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
  },
  "cabin": {
   "type": "string",
   "enum": [
    "economy",
    "premium_economy",
    "business",
    "first"
   ]
  },
  "passengers": {
   "type": "integer",
   "minimum": 1,
   "maximum": 9
  }
 }
}

Example output

{
 "search": {
  "origin_airports": [
   "JFK"
  ],
  "destination_airports": [
   "LAX"
  ],
  "start_date": "2026-09-01",
  "end_date": "2026-09-07",
  "cabin": "economy",
  "passengers": 1
 },
 "results": [],
 "count": 0,
 "source": "oblique_request_normalizer",
 "availability": "not_claimed",
 "note": "No Seats.aero credentials are held by Oblique; this equivalent preserves the machine-search shape without fabricating award availability.",
 "generated_at": "2026-08-25T12:00:00.000Z"
}

Clients

Worked TypeScript/Python clients and MCP configs: oblique-markets/oblique-examples · Agent Skills: oblique-markets/skills

Pay per call with x402 (USDC on Base or Solana) or MPP (pathUSD on Tempo). No accounts. Machine doors: /.well-known/x402.json · /openapi.json · /llms-full.txt · MCP · humans: remote.observer