> ## 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 motion playbooks

> List motion playbooks, optionally filtered by motion, offering, or motion type



## OpenAPI

````yaml get /api/v2/motion-playbook/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-playbook/list:
    get:
      tags:
        - MotionPlaybook
      summary: List motion playbooks
      description: >-
        List motion playbooks, optionally filtered by motion, offering, or
        motion type
      operationId: listMotionPlaybooks
      parameters:
        - schema:
            type: string
            nullable: true
            description: Filter by motion oId
          required: false
          name: motionOId
          in: query
        - schema:
            type: string
            nullable: true
            description: Filter by offering oId
          required: false
          name: offeringOId
          in: query
        - schema:
            type: string
            nullable: true
            enum:
              - NET_NEW
              - UPSELL
              - CROSS_SELL
              - CONVERT_FREE_TO_PAID
              - RENEW_AND_RETAIN
              - DISPLACE_INCUMBENT
            description: Filter by motion type
          required: false
          name: motionType
          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 playbook 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/MotionPlaybookListItem'
                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
    MotionPlaybookListItem:
      type: object
      properties:
        oId:
          type: string
          description: Motion playbook oId
        name:
          type: string
          nullable: true
        motionOId:
          type: string
          description: Parent motion oId
        motionName:
          type: string
        offeringName:
          type: string
        motionType:
          type: string
          enum:
            - NET_NEW
            - UPSELL
            - CROSS_SELL
            - CONVERT_FREE_TO_PAID
            - RENEW_AND_RETAIN
            - DISPLACE_INCUMBENT
        narrativeType:
          type: string
          nullable: true
          enum:
            - DEFAULT
            - THEMATIC
            - MILESTONE
            - ACCOUNT
            - COMPETITIVE
        motionFraming:
          type: string
          nullable: true
        active:
          type: boolean
        user:
          type: object
          nullable: true
          properties:
            oId:
              type: string
            firstName:
              type: string
            lastName:
              type: string
          required:
            - oId
            - firstName
            - lastName
        createdAt:
          type: string
          nullable: true
          description: Creation date
        updatedAt:
          type: string
          nullable: true
          description: Updated date
      required:
        - oId
        - name
        - motionOId
        - motionName
        - offeringName
        - motionType
        - narrativeType
        - motionFraming
        - active
        - user
        - createdAt
        - updatedAt
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: api_key

````