> ## 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 Motion ICP detail

> Get full detail for a Motion ICP cell including the AI-generated narrative and learning count. Use includeReport=true to include the latest report run summary and comparisonWithPrevious. Use GET /api/v2/motion-icp/elements/list to fetch recommended library entities for this cell.



## OpenAPI

````yaml get /api/v2/motion-icp/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/get:
    get:
      tags:
        - MotionICP
      summary: Get Motion ICP detail
      description: >-
        Get full detail for a Motion ICP cell including the AI-generated
        narrative and learning count. Use includeReport=true to include the
        latest report run summary and comparisonWithPrevious. Use GET
        /api/v2/motion-icp/elements/list to fetch recommended library entities
        for this cell.
      operationId: getMotionIcp
      parameters:
        - schema:
            type: string
            description: Motion ICP oId (micp_ prefix)
          required: true
          name: oId
          in: query
        - schema:
            type: string
            description: >-
              Pass true to include the latest completed report run summary and
              comparisonWithPrevious in the response. Defaults to false.
          required: false
          name: includeReport
          in: query
      responses:
        '200':
          description: Motion ICP detail
          content:
            application/json:
              schema:
                type: object
                properties:
                  _metadata:
                    $ref: '#/components/schemas/Metadata'
                  data:
                    $ref: '#/components/schemas/MotionIcpDetail'
                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
    MotionIcpDetail:
      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
        narrative:
          type: object
          nullable: true
          properties:
            targetIcpOverview:
              type: string
            operatingLandscape:
              type: array
              items:
                type: string
            strategicNarrative:
              type: array
              items:
                type: string
            painsAndConsequences:
              type: array
              items:
                type: string
            benefitsAndImpacts:
              type: array
              items:
                type: string
            methodology:
              type: array
              items:
                type: object
                properties:
                  label:
                    type: string
                  subLabel:
                    type: string
                  sections:
                    type: array
                    items:
                      type: object
                      properties:
                        title:
                          type: string
                        value:
                          anyOf:
                            - type: string
                            - type: array
                              items:
                                type: string
                      required:
                        - title
                        - value
                required:
                  - label
                  - sections
            valueProps:
              type: array
              items:
                type: string
            approachAngle:
              type: array
              items:
                type: string
            businessImpact:
              type: array
              items:
                type: string
            uniqueInsight:
              type: array
              items:
                type: string
          required:
            - targetIcpOverview
            - operatingLandscape
            - strategicNarrative
            - painsAndConsequences
            - benefitsAndImpacts
            - methodology
          description: >-
            AI-generated narrative fields from the active version
            (targetIcpOverview, strategicNarrative, painsAndConsequences,
            benefitsAndImpacts, methodology). Null when no active version exists
            yet.
        learningsCount:
          type: integer
          description: Total number of current learnings for this ICP cell
        latestReport:
          type: object
          nullable: true
          properties:
            oId:
              type: string
              description: Pass to GET /api/v2/report-run/get for full sections
            title:
              type: string
              nullable: true
            summary:
              type: string
              nullable: true
            windowStart:
              type: string
              nullable: true
            windowEnd:
              type: string
              nullable: true
            comparisonWithPrevious:
              type: object
              nullable: true
              properties:
                summaryOfChanges:
                  type: string
                emphasisShift:
                  type: string
                keyDelta:
                  type: string
                newThemes:
                  type: array
                  items:
                    type: string
                continuingThemes:
                  type: array
                  items:
                    type: string
              description: What changed vs the prior report period
          required:
            - oId
            - title
            - summary
            - windowStart
            - windowEnd
            - comparisonWithPrevious
          description: >-
            Latest completed report run summary. Only included when
            includeReport=true.
      required:
        - oId
        - motionPlaybookOId
        - persona
        - segment
        - status
        - disabled
        - narrative
        - learningsCount
    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

````