skills/polymer-pay-stabletravel-flightaware/SKILL.md
USE THIS SKILL WHEN: the user wants real-time flight tracking, flight status, airport operations, historical flight data, or disruption statistics via FlightAware through the Polymer Pay proxy.
npx skillsauth add polymerdao/pay-apis polymer-pay-stabletravel-flightawareInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
FlightAware provides real-time flight tracking, airport operations, flight history, and disruption statistics through the Polymer Pay proxy via StableTravel. Track flights, get positions, view historical data, and monitor airport operations.
All requests route through the Polymer Pay proxy. Include your Polymer Pay API key in every request:
{
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
Base URL: https://pay.polymerlabs.org/proxy/https/stabletravel.dev
Search flights by query string using FlightAware syntax (idents, latlong, airline).
Pricing: $0.10
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/stabletravel.dev/api/flightaware/flights/search?query=UAL123",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
Response: JSON array of flights matching the query.
Get flights by flight number, registration, or callsign.
Pricing: $0.01
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/stabletravel.dev/api/flightaware/flights/UAL123",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
Get latest position data for a specific flight.
Pricing: $0.02
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/stabletravel.dev/api/flightaware/flights/{id}/position",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
Get full position history/track for a flight.
Pricing: $0.024
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/stabletravel.dev/api/flightaware/flights/{id}/track",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
Get flight track as a PNG map image.
Pricing: $0.06
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/stabletravel.dev/api/flightaware/flights/{id}/map",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
Get information about a specific airport by code.
Pricing: $0.03
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/stabletravel.dev/api/flightaware/airports/JFK",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
Get delay information for a specific airport.
Pricing: $0.02
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/stabletravel.dev/api/flightaware/airports/JFK/delays",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
Get flights at an airport (arrivals, departures, enroute).
Pricing: $0.04
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/stabletravel.dev/api/flightaware/airports/JFK/flights",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
Get current weather observations for an airport.
Pricing: $0.004
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/stabletravel.dev/api/flightaware/airports/JFK/weather/observations",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
Get historical flight data by ident.
Pricing: $0.04
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/stabletravel.dev/api/flightaware/history/flights/UAL123",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
Get historical flight track.
Pricing: $0.12
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/stabletravel.dev/api/flightaware/history/flights/{id}/track",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
Get disruption statistics for airlines or airports.
Pricing: $0.01
{
"method": "GET",
"url": "https://pay.polymerlabs.org/proxy/https/stabletravel.dev/api/flightaware/disruption-counts/airline/UAL",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
development
USE THIS SKILL WHEN: the user wants to use Z.ai's GLM models for chat, translation, image generation, video generation, or web search. Z.ai provides GLM-4.5 and GLM-4.6 with advanced reasoning and agentic capabilities.
development
USE THIS SKILL WHEN: the user wants a quick single-page scrape to markdown or a webpage screenshot. Provides lightweight web scraping and screenshots via x402engine through the Polymer Pay proxy.
data-ai
USE THIS SKILL WHEN: the user wants to generate AI images with FLUX models or create text-in-image with Ideogram. Provides pay-per-use image generation via x402engine through the Polymer Pay proxy.
data-ai
USE THIS SKILL WHEN: the user wants wallet balances, transactions, PnL, ENS resolution, token prices, or transaction simulation. Provides pay-per-use blockchain operations via x402engine through the Polymer Pay proxy.