> ## 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 Pulses

> Retrieve pulse information for the authenticated account. If the account has access to organizations, pass account_id to filter to a specific account within those organizations.



## OpenAPI

````yaml api-reference/openapi/accounts.json GET /api/pulses
openapi: 3.1.0
info:
  title: Recoup API - Accounts
  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/pulses:
    get:
      description: >-
        Retrieve pulse information for the authenticated account. If the account
        has access to organizations, pass account_id to filter to a specific
        account within those organizations.
      parameters:
        - name: account_id
          in: query
          description: >-
            Filter to a specific account. Only applicable when the authenticated
            account has access to multiple accounts via organization membership.
          required: false
          schema:
            type: string
            format: uuid
        - name: active
          in: query
          description: >-
            Filter by active status. Set to 'true' to return only active pulses,
            'false' for inactive pulses. If not provided, returns all pulses
            regardless of active status.
          required: false
          schema:
            type: string
            enum:
              - 'true'
              - 'false'
      responses:
        '200':
          description: Pulses retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PulsesResponse'
        '400':
          description: Bad request - invalid query parameters
          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 - account_id is not a member of the organization or
            account tried to filter by an account_id they don't have access to
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    PulsesResponse:
      type: object
      required:
        - status
        - pulses
      properties:
        status:
          type: string
          enum:
            - success
            - error
          description: Status of the request
        pulses:
          type: array
          items:
            $ref: '#/components/schemas/Pulse'
          description: >-
            Array of pulse objects. Contains pulses for the authenticated
            account. If the account has access to organizations, all
            organization accounts are included.
        error:
          type: string
          description: Error message (only present if status is error)
    Error:
      required:
        - error
        - message
      type: object
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string
    Pulse:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: Unique identifier for the pulse
        account_id:
          type: string
          format: uuid
          description: Unique identifier for the associated account
        active:
          type: boolean
          description: Whether the pulse is active (defaults to true)

````