API Documentation

GET /apps

Return a list of available testing applications via this API.

curl "https://api.preflight.qa/apps" \
  -H "Authorization: Bearer <api_token>" \
  -H "Content-Type: application/json"

Example JSON response:

{
  "data":{
    "apps":{
      "outlook_mac":{
        "name": "Microsoft Outlook for Mac",
        "modes": ["light", "dark"]
      },
      "apple_mail_mac":{
        "name": "Apple Mail (Mac)",
        "modes": ["light", "dark"]
      }
    }
  }
}