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

# List Motion ICP cells

> List all ICP cells for a motion, optionally filtered to a specific playbook. Returns persona, segment, and status for each cell. Use the returned oId with /motion-icp/get to retrieve full details and recommendations.



## OpenAPI

````yaml get /api/v2/motion-icp/list
openapi: 3.0.0
info:
  version: 1.0.0
  title: Octave API
  description: API for Octave workspace management and AI-powered content generation
servers:
  - url: https://app.octavehq.com
security:
  - ApiKeyAuth: []
paths:
  /api/v2/motion-icp/list:
    get:
      tags:
        - MotionICP
      summary: List Motion ICP cells
      description: >-
        List all ICP cells for a motion, optionally filtered to a specific
        playbook. Returns persona, segment, and status for each cell. Use the
        returned oId with /motion-icp/get to retrieve full details and
        recommendations.
      operationId: listMotionIcps
      parameters:
        - schema:
            type: string
            description: Motion oId (mot_ prefix). Required.
          required: true
          name: motionOId
          in: query
        - schema:
            type: string
            description: >-
              Filter to a specific motion playbook oId (mpb_ prefix). Omit to
              return all playbooks.
          required: false
          name: motionPlaybookOId
          in: query
      responses:
        '200':
          description: ICP matrix rows for the motion
          content:
            application/json:
              schema:
                type: object
                properties:
                  _metadata:
                    $ref: '#/components/schemas/Metadata'
                  data:
                    type: object
                    properties:
                      data:
                        type: array
                        items:
                          $ref: '#/components/schemas/MotionIcpListItem'
                      total:
                        type: integer
                    required:
                      - data
                      - total
                required:
                  - _metadata
                  - data
      deprecated: false
components:
  schemas:
    Metadata:
      type: object
      properties:
        usage:
          type: number
          default: 0
          description: API usage
          example: 0
        requestId:
          type: string
          description: Request ID
          example: requestId
        message:
          type: string
          description: Message
          example: message
        timestamp:
          type: string
          description: Timestamp
          example: '2021-01-01T00:00:00.000Z'
      required:
        - requestId
        - timestamp
    MotionIcpListItem:
      type: object
      properties:
        oId:
          type: string
          description: Motion ICP oId (micp_ prefix)
        motionPlaybookOId:
          type: string
          description: Parent motion playbook oId
        persona:
          $ref: '#/components/schemas/EntityRef'
        segment:
          allOf:
            - $ref: '#/components/schemas/EntityRef'
            - description: Target segment
        status:
          type: string
          enum:
            - PENDING_INITIAL_VERSION
            - HAS_VERSION
            - GENERATING_INITIAL_VERSION
            - RUNNING_REPORT
            - ANALYZING_LEARNINGS
            - ANALYZING_ICP_RECOMMENDATIONS
            - UPDATING_VERSION
          description: Current generation status
        disabled:
          type: boolean
          description: Whether this ICP cell is disabled
      required:
        - oId
        - motionPlaybookOId
        - persona
        - segment
        - status
        - disabled
    EntityRef:
      type: object
      nullable: true
      properties:
        oId:
          type: string
        name:
          type: string
      required:
        - oId
        - name
      description: Target persona
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: api_key

````