> ## Documentation Index
> Fetch the complete documentation index at: https://docs.oktolabs.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List Ideations

> List ideations for a board, optionally filtered by status.



## OpenAPI

````yaml /openapi.json get /api/v1/boards/{board_id}/ideations
openapi: 3.1.0
info:
  description: >-
    Okto Pulse REST API schema generated from okto-pulse-core 0.2.0 source for
    docs.oktolabs.ai.
  title: Okto Pulse
  version: 0.2.0
servers: []
security: []
paths:
  /api/v1/boards/{board_id}/ideations:
    get:
      tags:
        - ideations
      summary: List Ideations
      description: List ideations for a board, optionally filtered by status.
      operationId: list_ideations_api_v1_boards__board_id__ideations_get
      parameters:
        - in: path
          name: board_id
          required: true
          schema:
            title: Board Id
            type: string
        - in: query
          name: status
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Status
        - in: query
          name: include_archived
          required: false
          schema:
            default: false
            title: Include Archived
            type: boolean
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/IdeationSummary'
                title: Response List Ideations Api V1 Boards  Board Id  Ideations Get
                type: array
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
        - HTTPBearer: []
components:
  schemas:
    IdeationSummary:
      description: Schema for ideation summary.
      properties:
        architecture_designs:
          default: []
          items:
            $ref: '#/components/schemas/ArchitectureDesignSummary'
          title: Architecture Designs
          type: array
        archived:
          default: false
          title: Archived
          type: boolean
        assignee_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Assignee Id
        board_id:
          title: Board Id
          type: string
        complexity:
          anyOf:
            - $ref: '#/components/schemas/IdeationComplexity'
            - type: 'null'
        created_at:
          format: date-time
          title: Created At
          type: string
        created_by:
          title: Created By
          type: string
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        id:
          title: Id
          type: string
        labels:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Labels
        pre_archive_status:
          anyOf:
            - type: string
            - type: 'null'
          title: Pre Archive Status
        problem_statement:
          anyOf:
            - type: string
            - type: 'null'
          title: Problem Statement
        status:
          $ref: '#/components/schemas/IdeationStatus'
        title:
          title: Title
          type: string
        updated_at:
          format: date-time
          title: Updated At
          type: string
        version:
          title: Version
          type: integer
      required:
        - id
        - board_id
        - title
        - description
        - problem_statement
        - complexity
        - status
        - version
        - assignee_id
        - created_by
        - created_at
        - updated_at
        - labels
      title: IdeationSummary
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ArchitectureDesignSummary:
      description: Lightweight architecture design summary without heavy diagram payloads.
      properties:
        adapter_payload_refs:
          items:
            type: string
          title: Adapter Payload Refs
          type: array
        board_id:
          title: Board Id
          type: string
        breaking_change_flag:
          default: false
          title: Breaking Change Flag
          type: boolean
        created_at:
          format: date-time
          title: Created At
          type: string
        diagrams_count:
          default: 0
          title: Diagrams Count
          type: integer
        id:
          title: Id
          type: string
        parent_id:
          title: Parent Id
          type: string
        parent_type:
          enum:
            - ideation
            - refinement
            - spec
            - card
          title: Parent Type
          type: string
        requires_arch_review:
          default: false
          title: Requires Arch Review
          type: boolean
        source_ref:
          anyOf:
            - type: string
            - type: 'null'
          title: Source Ref
        source_version:
          anyOf:
            - type: integer
            - type: 'null'
          title: Source Version
        stale:
          default: false
          title: Stale
          type: boolean
        title:
          title: Title
          type: string
        updated_at:
          format: date-time
          title: Updated At
          type: string
        version:
          title: Version
          type: integer
      required:
        - id
        - board_id
        - parent_type
        - parent_id
        - title
        - version
        - created_at
        - updated_at
      title: ArchitectureDesignSummary
      type: object
    IdeationComplexity:
      description: Ideation complexity level — determines whether refinements are needed.
      enum:
        - small
        - medium
        - large
      title: IdeationComplexity
      type: string
    IdeationStatus:
      description: Ideation lifecycle status.
      enum:
        - draft
        - review
        - approved
        - evaluating
        - done
        - cancelled
      title: IdeationStatus
      type: string
    ValidationError:
      properties:
        ctx:
          title: Context
          type: object
        input:
          title: Input
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  securitySchemes:
    HTTPBearer:
      scheme: bearer
      type: http

````