{
  "info": {
    "name": "Airtop — mcp.ai",
    "description": "REST API for the Airtop MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/airtop",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "airtop_click_element",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/click/element",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "click",
            "element"
          ]
        },
        "description": "Use Airtop AI to locate an element from a natural-language description and click it. This consumes Airtop credits and can trigger irreversible external effects such as submitting a form, placing an or",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"window_id\": \"\",\n  \"click_type\": \"\",\n  \"session_id\": \"\",\n  \"client_request_id\": \"\",\n  \"element_description\": \"\",\n  \"wait_for_navigation\": false,\n  \"cost_threshold_credits\": 0,\n  \"time_threshold_seconds\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airtop_close_window",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/close/window",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "close",
            "window"
          ]
        },
        "description": "Close one browser window without terminating its Airtop session.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"window_id\": \"\",\n  \"session_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airtop_create_session",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/session",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "session"
          ]
        },
        "description": "Create an Airtop browser session and wait until it is running. Sessions are billed in 30-second increments, so terminate them promptly when work is complete.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"proxy\": \"\",\n  \"record\": false,\n  \"profile_name\": \"\",\n  \"extension_ids\": \"\",\n  \"solve_captcha\": false,\n  \"timeout_minutes\": 0,\n  \"readiness_timeout_seconds\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airtop_create_window",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/window",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "window"
          ]
        },
        "description": "Create a browser window in a running Airtop session and load an initial URL. If no URL is supplied, Airtop loads https://www.google.com.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"session_id\": \"\",\n  \"wait_until\": \"\",\n  \"screen_resolution\": \"\",\n  \"wait_until_timeout_seconds\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airtop_list_sessions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/sessions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "sessions"
          ]
        },
        "description": "List Airtop browser sessions, optionally filtering by IDs or status. Use this to discover sessions or check the current state of a known session.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"status\": \"\",\n  \"next_cursor\": \"\",\n  \"session_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airtop_list_windows",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/windows",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "windows"
          ]
        },
        "description": "List all browser windows in a running Airtop session, including their IDs, current URLs, and titles when available.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"session_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airtop_navigate_window",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/navigate/window",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "navigate",
            "window"
          ]
        },
        "description": "Navigate an existing Airtop browser window to a new URL and optionally wait for page loading.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"window_id\": \"\",\n  \"session_id\": \"\",\n  \"wait_until\": \"\",\n  \"wait_until_timeout_seconds\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airtop_query_page",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/page",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "page"
          ]
        },
        "description": "Ask Airtop AI a question about a page or extract structured page content. This operation consumes Airtop credits; the response reports credits_used, and cost/time thresholds cancel work after periodic",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"prompt\": \"\",\n  \"window_id\": \"\",\n  \"session_id\": \"\",\n  \"output_schema\": {},\n  \"client_request_id\": \"\",\n  \"cost_threshold_credits\": 0,\n  \"time_threshold_seconds\": 0,\n  \"follow_pagination_links\": false,\n  \"include_visual_analysis\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airtop_terminate_session",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/terminate/session",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "terminate",
            "session"
          ]
        },
        "description": "Terminate an Airtop session and all of its windows. Use promptly after browser work to stop time-based session billing.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"session_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "airtop_type_text",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/type/text",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "type",
            "text"
          ]
        },
        "description": "Use Airtop AI to locate an input and type text into it. This consumes Airtop credits. Enabling Enter can submit forms or trigger external effects, and the response preserves status, usage, warnings, a",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"text\": \"\",\n  \"window_id\": \"\",\n  \"session_id\": \"\",\n  \"press_tab_key\": false,\n  \"press_enter_key\": false,\n  \"clear_input_field\": false,\n  \"client_request_id\": \"\",\n  \"element_description\": \"\",\n  \"wait_for_navigation\": false,\n  \"cost_threshold_credits\": 0,\n  \"time_threshold_seconds\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}