> ## Documentation Index
> Fetch the complete documentation index at: https://docs.recoupable.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# List Connector Actions

> List the executable actions available across the authenticated account's connectors. Each action is a single tool that can be invoked via POST /api/connectors/actions — for example, the `googlesheets` connector exposes actions like `GOOGLESHEETS_WRITE_SPREADSHEET`. Actions whose parent connector is not yet connected are returned with `isConnected: false` and cannot be executed until the connector is authorized via POST /api/connectors.



## OpenAPI

````yaml api-reference/openapi/social.json GET /api/connectors/actions
openapi: 3.1.0
info:
  title: Recoup API - Social
  description: >-
    API documentation for the Recoup platform - an AI agent platform for the
    music industry
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.recoupable.dev
security: []
paths:
  /api/connectors/actions:
    get:
      description: >-
        List the executable actions available across the authenticated account's
        connectors. Each action is a single tool that can be invoked via POST
        /api/connectors/actions — for example, the `googlesheets` connector
        exposes actions like `GOOGLESHEETS_WRITE_SPREADSHEET`. Actions whose
        parent connector is not yet connected are returned with `isConnected:
        false` and cannot be executed until the connector is authorized via POST
        /api/connectors.
      parameters:
        - name: account_id
          in: query
          description: >-
            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.
          required: false
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Actions retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConnectorActionsResponse'
        '400':
          description: Bad request — invalid account_id format
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized — invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Forbidden — no access to the specified account
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - apiKeyAuth: []
        - bearerAuth: []
components:
  schemas:
    ConnectorActionsResponse:
      type: object
      required:
        - success
        - actions
      properties:
        success:
          type: boolean
        actions:
          type: array
          items:
            $ref: '#/components/schemas/ConnectorAction'
          description: >-
            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.
    Error:
      required:
        - error
        - message
      type: object
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string
    ConnectorAction:
      type: object
      required:
        - slug
        - name
        - description
        - parameters
        - connectorSlug
        - isConnected
      properties:
        slug:
          type: string
          description: >-
            Unique identifier for the action — pass this as `actionSlug` when
            calling POST /api/connectors/actions. Action slugs are always
            UPPERCASE_SNAKE_CASE (e.g. `GITHUB_CREATE_ISSUE`,
            `GMAIL_FETCH_EMAILS`, `GOOGLESHEETS_WRITE_SPREADSHEET`).
        name:
          type: string
          description: Human-readable action name.
        description:
          type: string
          description: >-
            What the action does. Use this to pick the right action from the
            catalog.
        parameters:
          type: object
          description: >-
            JSON Schema describing the parameters this action expects. Pass
            values matching this schema in the `parameters` field of the execute
            request.
          additionalProperties: true
        connectorSlug:
          type: string
          description: >-
            Slug of the parent connector this action belongs to (e.g.
            'googlesheets', 'tiktok', 'youtube', 'twitter', 'linkedin'). Matches
            the `slug` returned by GET /api/connectors.
        isConnected:
          type: boolean
          description: >-
            Whether the parent connector is currently authorized for this
            account. Actions can only be executed when this is true.
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Your Recoup API key. [Learn more](/quickstart#api-keys).
    bearerAuth:
      type: http
      scheme: bearer

````