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

# Get a Motion ICP learning

> Fetch a single learning by oId



## OpenAPI

````yaml get /api/v2/motion-icp/learnings/get
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/get:
    get:
      tags:
        - MotionICP
      summary: Get a Motion ICP learning
      description: Fetch a single learning by oId
      operationId: getMotionIcpLearning
      parameters:
        - schema:
            type: string
            description: Learning oId (lea_*)
            example: lea_abc123
          required: true
          name: oId
          in: query
      responses:
        '200':
          description: Learning detail
          content:
            application/json:
              schema:
                type: object
                properties:
                  _metadata:
                    $ref: '#/components/schemas/Metadata'
                  data:
                    $ref: '#/components/schemas/MotionIcpLearning'
                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
    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

````