Skip to main content
GET
/
metadata
/
apps
Retrieve all supported apps
curl --request GET \
  --url https://production.runalloy.com/metadata/apps \
  --header 'Authorization: <authorization>' \
  --header 'x-api-version: <x-api-version>'
{
  "data": [
    {
      "connector": "acuityScheduling",
      "icon": "https://cdn.runalloy.com/icons/acuityScheduling.png",
      "type": [
        "action",
        "trigger"
      ],
      "oauth": false
    },
    {
      "connector": "shopify",
      "icon": "https://cdn.runalloy.com/icons/shopify.png",
      "type": [
        "action",
        "trigger"
      ],
      "oauth": true
    }
  ]
}

Headers

Authorization
string
default:bearer YOUR_API_KEY
required
x-api-version
string
default:2025-09
required

The version of the API to use. The current API version is 2025-09.

Response

200

The response is of type any.

I