ToolAssay

Use when an agent needs award flight search

Use when an agent needs award flight search. Returns Validate and normalize an award-flight search (origins, destinations, date window, cabin, passengers) into a stable machine-readable request and response shape, without claiming inventory Oblique does not hold. $0.02.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
21 msmedian answer time
$0.02listed price per call
$0.02price 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

POST https://api.oblique.markets/api/v1/paid/award-flight-search

CategorySearch and research
Provider hostapi.oblique.markets
Networkseip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp
Payment schemesexact
Self-reported calls, 30 days2 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.02 21 ms

Example input (from the provider)

{
  "body": {
    "destination_airports": [
      "example"
    ],
    "end_date": "example",
    "origin_airports": [
      "example"
    ],
    "start_date": "example"
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$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"
}

This page as JSON