> ## 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 recommended elements for a Motion ICP

> Returns the recommended library entities (use cases, proof points, reference customers, competitors, alternatives, buying triggers, objections) linked to a specific Motion ICP cell from its active version.



## OpenAPI

````yaml get /api/v2/motion-icp/elements/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/elements/list:
    get:
      tags:
        - MotionICP
      summary: List recommended elements for a Motion ICP
      description: >-
        Returns the recommended library entities (use cases, proof points,
        reference customers, competitors, alternatives, buying triggers,
        objections) linked to a specific Motion ICP cell from its active
        version.
      operationId: listMotionIcpElements
      parameters:
        - schema:
            type: string
            description: >-
              Motion ICP oId (micp_ prefix). Obtain from the motion ICP matrix
              or find_motion_icp MCP tool.
          required: true
          name: motionIcpOId
          in: query
      responses:
        '200':
          description: Recommended elements list
          content:
            application/json:
              schema:
                type: object
                properties:
                  _metadata:
                    $ref: '#/components/schemas/Metadata'
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/MotionIcpElement'
                  total:
                    type: integer
                    description: Total recommended elements for this ICP
                required:
                  - _metadata
                  - data
                  - total
      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
    MotionIcpElement:
      type: object
      properties:
        oId:
          type: string
          description: Library entity oId
        name:
          type: string
          description: Library entity name
        type:
          type: string
          enum:
            - useCase
            - proofPoint
            - referenceCustomer
            - competitor
            - alternative
            - buyingTrigger
            - objection
          description: Recommendation category for this element
      required:
        - oId
        - name
        - type
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: api_key

````