Real-time aviation weather for any ICAO airport
Real-time aviation weather for any ICAO airport. Returns decoded METAR, TAF, SIGMET alerts, and a normalized 24-hour forecast. Batch up to 10 airports per call.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
100 msmedian answer time
$0.1listed price per call
$0.1price 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://jtifhcvbgxqwlywugvjv.supabase.co/functions/v1/cortex402-aviation-weather
| Category | Everything else |
|---|---|
| Provider host | jtifhcvbgxqwlywugvjv.supabase.co |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 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.1 | 100 ms |
Example input (from the provider)
{
"body": {
"icao": "KLAS"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"icao": {
"description": "ICAO code (3\u20134 chars, e.g. \"KLAS\"). Runtime also accepts a JSON array of up to 10 ICAOs for batch lookups.",
"type": "string"
}
},
"required": [
"icao"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}