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

> Returns the current learnings for a specific Motion ICP cell, sorted by pinned status and confidence.



## OpenAPI

````yaml get /api/v2/motion-icp/learnings/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/learnings/list:
    get:
      tags:
        - MotionICP
      summary: List learnings for a Motion ICP
      description: >-
        Returns the current learnings for a specific Motion ICP cell, sorted by
        pinned status and confidence.
      operationId: listMotionIcpLearnings
      parameters:
        - schema:
            type: string
            description: >-
              Motion ICP oId (micp_*). Obtain this from the find_motion_icp MCP
              tool or the motion ICP matrix.
          required: true
          name: motionIcpOId
          in: query
      responses:
        '200':
          description: Learnings list
          content:
            application/json:
              schema:
                type: object
                properties:
                  _metadata:
                    $ref: '#/components/schemas/Metadata'
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/MotionIcpLearning'
                  total:
                    type: number
                    description: Total learnings 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
    MotionIcpLearning:
      type: object
      properties:
        oId:
          type: string
          description: Learning oId
        type:
          type: string
          enum:
            - KEY_LANGUAGE
            - INDUSTRY_TREND
            - PAIN_POINT
            - VALUE_PROP
            - OBJECTION
          description: Learning type
        summary:
          type: string
          description: Learning summary
        confidence:
          type: number
          nullable: true
          description: Confidence score (0–1)
        sourceType:
          type: string
          enum:
            - AI_GENERATED
            - USER_DEFINED
          description: AI-generated or manual
        pinned:
          type: boolean
          description: Whether the learning is pinned
        createdAt:
          type: string
          nullable: true
          description: Creation date
        evidenceByChannel:
          type: object
          additionalProperties:
            type: number
          description: Count of evidence findings per channel type
      required:
        - oId
        - type
        - summary
        - confidence
        - sourceType
        - pinned
        - createdAt
        - evidenceByChannel
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: api_key

````