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

# List Feature Requests



## OpenAPI

````yaml GET /v1/feature-requests
openapi: 3.0.0
info:
  title: Wardin API
  description: AI governance & observability platform — external REST API
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /v1/feature-requests:
    get:
      tags:
        - feature-requests
      summary: List all feature requests for the tenant
      operationId: FeatureRequestsController_list
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FeatureRequestDto'
      security:
        - bearer: []
components:
  schemas:
    FeatureRequestDto:
      type: object
      properties:
        id:
          type: string
        title:
          type: string
        description:
          type: string
        status:
          type: string
          enum:
            - open
            - planned
            - shipped
        createdAt:
          format: date-time
          type: string
      required:
        - id
        - title
        - description
        - status
        - createdAt
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````