# Flight Tracker — Live Aircraft Data for AI Agents (`haketa/flight-tracker`) Actor

Real-time flight tracking tool for AI agents & LLMs. Look up live aircraft position, altitude, speed, heading & on-ground status by flight/callsign, region or airport — plus airport departures/arrivals. MCP-callable real-time grounding for travel assistants & RAG.

- **URL**: https://apify.com/haketa/flight-tracker.md
- **Developed by:** [Haketa](https://apify.com/haketa) (community)
- **Categories:** AI, Travel
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.70 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Flight Tracker — Live Aircraft Position & Status for AI Agents

A **real-time flight tracking tool built for AI agents, LLMs and RAG pipelines.** Look up **live aircraft position, altitude, speed, heading and on-ground status** by flight number / callsign, region or airport — data that no LLM knows from its training set. Perfect as a **tool-call / MCP grounding source** for travel assistants, chatbots and agents.

Clean, small, structured output — ideal for feeding straight into an LLM context or an agent's tool response. Works from the Apify Console, on a schedule, or via API. Callable by **Claude, ChatGPT, LangChain, CrewAI, LlamaIndex and any MCP client** (every Apify actor is MCP-callable via `mcp.apify.com`).

> **✈️ Real-time grounding, not stale training data.** "Where is flight DLH717 right now? How high, how fast, which direction?" — the actor answers with live telemetry an LLM can't produce on its own.

---

### 🤖 Why this is an AI-agent tool

LLMs have a knowledge cutoff and no live data. AI agents close that gap with **tool calls** to real-time sources. Flight data is a textbook grounding case:

- ✅ **Live, not memorised** — current position, altitude and speed update every few seconds
- ✅ **Small, structured payload** — token-efficient, one clean record per aircraft
- ✅ **Tool-shaped input** — a flight number in, a structured answer out
- ✅ **MCP-ready** — call it from any agent framework or MCP client

---

### 📋 What this actor does

Give it a flight, a region or an airport, and it returns:

- ✅ **Live position** — latitude / longitude (WGS84)
- ✅ **Altitude** — barometric and geometric (metres)
- ✅ **Speed** — ground speed in m/s and km/h
- ✅ **Heading** — true track in degrees
- ✅ **Vertical rate** — climb / descent
- ✅ **On-ground status** and transponder **squawk**
- ✅ **Country of registration** and **ICAO24** address
- ✅ **Airport departures / arrivals** (with free OpenSky credentials)

Data comes from the **OpenSky Network** — a community-driven, real-time air-traffic data source.

---

### 🚀 Quick start

1. Enter a **flight number / callsign** (e.g. `DLH717`, `BA123`, `UAL456`).
2. Or leave flights empty and pick a **region** for all live traffic.
3. Click **Start** and read the structured result from **Storage → Dataset**.

> **Note:** aircraft only appear while **airborne**. If a flight isn't currently flying, it won't be in the live snapshot — use the region or airport modes to explore what's in the air now.

---

### ⚙️ Input

| Field | Type | Description |
| --- | --- | --- |
| **Flights / callsigns** | array | Flight numbers or callsigns, e.g. `DLH717`, `BA123`. IATA (`LH717`) is auto-mapped to ICAO callsigns (`DLH717`). |
| **Region** | select | When flights is empty: all live aircraft in a region (Europe, North America, Asia, ... or Worldwide). |
| **Airports** | array | ICAO codes for departures/arrivals, e.g. `EDDF`, `KJFK`, `EGLL`. Requires OpenSky credentials. |
| **Airport direction** | select | Arrivals or departures. |
| **OpenSky client ID / secret** | string | Optional free OAuth2 credentials (opensky-network.org) — enables airport flights + higher rate limit. |
| **Max results** | integer | Cap on records. `0` = no limit. |

#### Example 1 — Locate a specific flight

```json
{ "flights": ["DLH717", "BA123"] }
````

#### Example 2 — All live aircraft over Europe

```json
{ "flights": [], "region": "europe", "maxItems": 500 }
```

#### Example 3 — Arrivals at Frankfurt (with credentials)

```json
{
  "airports": ["EDDF"],
  "airportDirection": "arrival",
  "openSkyClientId": "your-id",
  "openSkyClientSecret": "your-secret"
}
```

***

### 📦 Output

```json
{
  "callsign": "DLH717",
  "icao24": "3c5ef8",
  "matchedQuery": "DLH717",
  "originCountry": "Germany",
  "latitude": 47.3575,
  "longitude": 6.4513,
  "baroAltitudeM": 11277.6,
  "geoAltitudeM": 11582.4,
  "velocityMs": 251.5,
  "velocityKmh": 905,
  "headingDeg": 117.4,
  "verticalRateMs": 0,
  "onGround": false,
  "squawk": "1000",
  "lastContact": "2026-07-03T15:30:25.000Z",
  "source": "live-position",
  "scrapedAt": "2026-07-03T15:30:26.000Z"
}
```

#### Output fields

| Field | Description |
| --- | --- |
| `callsign` / `icao24` | Aircraft callsign and unique ICAO24 address. |
| `matchedQuery` | The flight query this record matched. |
| `originCountry` | Country of registration. |
| `latitude` / `longitude` | Live position (WGS84). |
| `baroAltitudeM` / `geoAltitudeM` | Barometric / geometric altitude (m). |
| `velocityMs` / `velocityKmh` | Ground speed. |
| `headingDeg` | True track / heading (degrees). |
| `verticalRateMs` | Climb / descent rate (m/s). |
| `onGround` | True if on the ground. |
| `squawk` | Transponder code. |
| `lastContact` | Last position-update time. |
| `departureAirport` / `arrivalAirport` / `firstSeen` / `lastSeen` | Airport-mode fields. |
| `source` | `live-position` or `airport-arrival/departure`. |

***

### 💡 Use cases

| Use case | How it helps |
| --- | --- |
| **AI travel assistant** | Ground answers about live flight position and status. |
| **Agent tool / MCP** | A callable real-time data source for any LLM agent. |
| **RAG / chatbot** | Inject live flight telemetry into an LLM context. |
| **Dashboards & maps** | Feed live positions into a map or ops dashboard. |
| **Research & analytics** | Sample live air traffic by region. |

***

### 🔌 AI & integrations

- **MCP:** every Apify actor is callable from `mcp.apify.com` — add this actor as a tool in Claude Desktop, VS Code, or any MCP client.
- **Frameworks:** LangChain (`ApifyActorsTool`), LlamaIndex, CrewAI, Vercel AI SDK, n8n.
- **API:** run and fetch results with the Apify API or JS / Python clients.
- **Formats:** JSON, CSV, Excel, HTML, XML.

***

### ❓ FAQ

**Do I need an API key?**
No — live positions (flights & region modes) work without any credentials. Airport departures/arrivals need free OpenSky OAuth2 credentials.

**Why is my flight not found?**
Aircraft only appear while airborne. A flight that hasn't taken off (or has landed) won't be in the live snapshot.

**How fresh is the data?**
Real-time — positions are updated every few seconds by the OpenSky Network.

**Can an AI agent call this directly?**
Yes. It's designed as a tool-call source and is MCP-callable via Apify.

***

### ⚖️ Legal & responsible use

This actor uses the **OpenSky Network** community air-traffic data via its public API. Respect OpenSky's terms and rate limits, and use the data for lawful purposes. For heavier use, add free OpenSky OAuth2 credentials.

***

### 🛟 Support

Need an extra field or hit an issue? Open a ticket from the actor's **Issues** tab.

Happy tracking! ✈️

# Actor input Schema

## `flights` (type: `array`):

Flight numbers or callsigns to locate, e.g. "DLH717", "BA123", "UAL456". IATA numbers (LH717) are matched to ICAO callsigns (DLH717) automatically. This is the main AI-agent lookup: flight → live position.

## `region` (type: `string`):

When 'Flights' is empty, return all live aircraft in this region. 'worldwide' returns every tracked aircraft.

## `airports` (type: `array`):

ICAO airport codes for departures/arrivals, e.g. "EDDF" (Frankfurt), "KJFK" (New York JFK), "EGLL" (London Heathrow). Requires OpenSky credentials below.

## `airportDirection` (type: `string`):

For the airports above: departures or arrivals in the last hours.

## `openSkyClientId` (type: `string`):

Optional OpenSky Network OAuth2 client ID. Enables airport departures/arrivals and a higher rate limit. Get one free at opensky-network.org (Account → API Client).

## `openSkyClientSecret` (type: `string`):

OpenSky OAuth2 client secret (paired with the client ID).

## `maxItems` (type: `integer`):

Maximum number of aircraft / flights to return. Set 0 for no limit.

## `proxyConfiguration` (type: `object`):

Apify Proxy settings. Recommended and on by default — the OpenSky rate limit is per-IP, so a proxy avoids the shared platform IP being throttled.

## Actor input object example

```json
{
  "flights": [
    "DLH717"
  ],
  "region": "none",
  "airports": [],
  "airportDirection": "arrival",
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `callsign` (type: `string`):

Aircraft callsign (e.g. DLH717)

## `icao24` (type: `string`):

Unique ICAO 24-bit aircraft address

## `matchedQuery` (type: `string`):

The flight/callsign query this record matched

## `originCountry` (type: `string`):

Country of registration

## `latitude` (type: `string`):

Current latitude (WGS84)

## `longitude` (type: `string`):

Current longitude (WGS84)

## `baroAltitudeM` (type: `string`):

Barometric altitude in metres

## `geoAltitudeM` (type: `string`):

Geometric altitude in metres

## `velocityMs` (type: `string`):

Ground speed in m/s

## `velocityKmh` (type: `string`):

Ground speed in km/h

## `headingDeg` (type: `string`):

True track / heading in degrees

## `verticalRateMs` (type: `string`):

Climb/descent rate in m/s

## `onGround` (type: `string`):

True if the aircraft is on the ground

## `squawk` (type: `string`):

Transponder squawk code

## `lastContact` (type: `string`):

Timestamp of last position update

## `departureAirport` (type: `string`):

Estimated departure airport (airport mode)

## `arrivalAirport` (type: `string`):

Estimated arrival airport (airport mode)

## `firstSeen` (type: `string`):

First seen time (airport mode)

## `lastSeen` (type: `string`):

Last seen time (airport mode)

## `source` (type: `string`):

live-position or airport-departure/arrival

## `scrapedAt` (type: `string`):

Extraction timestamp

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "flights": [
        "DLH717"
    ],
    "airports": [],
    "maxItems": 100,
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("haketa/flight-tracker").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "flights": ["DLH717"],
    "airports": [],
    "maxItems": 100,
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("haketa/flight-tracker").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "flights": [
    "DLH717"
  ],
  "airports": [],
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call haketa/flight-tracker --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=haketa/flight-tracker",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Flight Tracker — Live Aircraft Data for AI Agents",
        "description": "Real-time flight tracking tool for AI agents & LLMs. Look up live aircraft position, altitude, speed, heading & on-ground status by flight/callsign, region or airport — plus airport departures/arrivals. MCP-callable real-time grounding for travel assistants & RAG.",
        "version": "0.1",
        "x-build-id": "EovSdGVMIlgUTVM3f"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/haketa~flight-tracker/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-haketa-flight-tracker",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/haketa~flight-tracker/runs": {
            "post": {
                "operationId": "runs-sync-haketa-flight-tracker",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/haketa~flight-tracker/run-sync": {
            "post": {
                "operationId": "run-sync-haketa-flight-tracker",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "flights": {
                        "title": "Flights / callsigns",
                        "type": "array",
                        "description": "Flight numbers or callsigns to locate, e.g. \"DLH717\", \"BA123\", \"UAL456\". IATA numbers (LH717) are matched to ICAO callsigns (DLH717) automatically. This is the main AI-agent lookup: flight → live position.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "region": {
                        "title": "Region (when no flights given)",
                        "enum": [
                            "none",
                            "worldwide",
                            "europe",
                            "north-america",
                            "south-america",
                            "asia",
                            "oceania",
                            "africa",
                            "middle-east"
                        ],
                        "type": "string",
                        "description": "When 'Flights' is empty, return all live aircraft in this region. 'worldwide' returns every tracked aircraft.",
                        "default": "none"
                    },
                    "airports": {
                        "title": "Airports (departures / arrivals)",
                        "type": "array",
                        "description": "ICAO airport codes for departures/arrivals, e.g. \"EDDF\" (Frankfurt), \"KJFK\" (New York JFK), \"EGLL\" (London Heathrow). Requires OpenSky credentials below.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "airportDirection": {
                        "title": "Airport direction",
                        "enum": [
                            "arrival",
                            "departure"
                        ],
                        "type": "string",
                        "description": "For the airports above: departures or arrivals in the last hours.",
                        "default": "arrival"
                    },
                    "openSkyClientId": {
                        "title": "OpenSky client ID (optional)",
                        "type": "string",
                        "description": "Optional OpenSky Network OAuth2 client ID. Enables airport departures/arrivals and a higher rate limit. Get one free at opensky-network.org (Account → API Client)."
                    },
                    "openSkyClientSecret": {
                        "title": "OpenSky client secret (optional)",
                        "type": "string",
                        "description": "OpenSky OAuth2 client secret (paired with the client ID)."
                    },
                    "maxItems": {
                        "title": "Max results",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum number of aircraft / flights to return. Set 0 for no limit.",
                        "default": 100
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Apify Proxy settings. Recommended and on by default — the OpenSky rate limit is per-IP, so a proxy avoids the shared platform IP being throttled.",
                        "default": {
                            "useApifyProxy": true
                        }
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
