Skip to main content
GET
/
api
/
connectors
/
actions
cURL
curl --request GET \
  --url https://api.recoupable.com/api/connectors/actions \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "actions": [
    {
      "slug": "<string>",
      "name": "<string>",
      "description": "<string>",
      "parameters": {},
      "connectorSlug": "<string>",
      "isConnected": true
    }
  ]
}

Authorizations

x-api-key
string
header
required

Your Recoup API key. Learn more.

Query Parameters

account_id
string<uuid>

Optional account ID to list actions for a different account (e.g., an artist, workspace, or organization). The authenticated account must have access. Omit to list actions for your own account.

Response

Actions retrieved successfully

success
boolean
required
actions
object[]
required

Available actions across all connectors the authenticated account has access to. Both connected and unconnected actions are returned — check isConnected per action before attempting execution.