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

> List motions for the workspace, optionally filtered by offering



## OpenAPI

````yaml get /api/v2/motion/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/list:
    get:
      tags:
        - Motion
      summary: List motions
      description: List motions for the workspace, optionally filtered by offering
      operationId: listMotions
      parameters:
        - schema:
            type: string
            nullable: true
            description: Filter by offering oId (product or service)
          required: false
          name: offeringOId
          in: query
        - schema:
            type: number
            minimum: 0
            exclusiveMinimum: true
            default: 20
            description: Limit
            example: 20
          required: false
          name: limit
          in: query
        - schema:
            type: number
            nullable: true
            minimum: 0
            default: 0
            description: Offset
            example: 0
          required: false
          name: offset
          in: query
      responses:
        '200':
          description: Motion list
          content:
            application/json:
              schema:
                type: object
                properties:
                  _metadata:
                    $ref: '#/components/schemas/Metadata'
                  hasNext:
                    type: boolean
                    description: Whether there are more results
                  total:
                    type: number
                    description: Total number of results
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/MotionListItem'
                required:
                  - _metadata
                  - hasNext
                  - total
                  - 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
    MotionListItem:
      type: object
      properties:
        oId:
          type: string
          description: Motion oId
        name:
          type: string
          description: Motion name
        description:
          type: string
          nullable: true
        overview:
          type: string
        offeringId:
          type: string
        offeringName:
          type: string
        offeringType:
          type: string
          enum:
            - PRODUCT
            - SERVICE
            - SOLUTION
        motionType:
          type: string
          enum:
            - NET_NEW
            - UPSELL
            - CROSS_SELL
            - CONVERT_FREE_TO_PAID
            - RENEW_AND_RETAIN
            - DISPLACE_INCUMBENT
          description: Motion type
        methodologyType:
          type: string
          enum:
            - OCTAVE
            - CVI
        icpCount:
          type: number
        playbookCount:
          type: number
        compositionCount:
          type: number
        defaultPlaybookOId:
          type: string
          nullable: true
        createdAt:
          type: string
          nullable: true
          description: Creation date
        updatedAt:
          type: string
          nullable: true
          description: Updated date
      required:
        - oId
        - name
        - offeringId
        - offeringName
        - offeringType
        - motionType
        - methodologyType
        - icpCount
        - playbookCount
        - compositionCount
        - createdAt
        - updatedAt
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: api_key

````