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

# List Configs



## OpenAPI

````yaml api-reference/openapi.json get /api/v1/config_definition/{config_definition_key}/config/
openapi: 3.1.0
info:
  title: Tartarus API
  description: Tartarus API for managing the underworld configurations
  version: 1.0.0
servers:
  - url: http://localhost:8000
    description: Local development server
security: []
paths:
  /api/v1/config_definition/{config_definition_key}/config/:
    get:
      tags:
        - Config
      summary: List Configs
      operationId: >-
        list_configs_api_v1_config_definition__config_definition_key__config__get
      parameters:
        - name: config_definition_key
          in: path
          required: true
          schema:
            type: string
            title: Config Definition Key
        - name: page
          in: query
          required: false
          schema:
            type: integer
            default: 1
            title: Page
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            default: 10
            title: Limit
        - name: sort_by
          in: query
          required: false
          schema:
            type: string
            default: modified_at
            title: Sort By
        - name: sort_order
          in: query
          required: false
          schema:
            type: string
            default: desc
            title: Sort Order
        - name: search
          in: query
          required: false
          schema:
            type: string
            title: Search
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListConfigResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - Bearer: []
components:
  schemas:
    ListConfigResponse:
      properties:
        status:
          $ref: '#/components/schemas/Status'
          description: The status of the response.
          default: SUCCESS
        message:
          anyOf:
            - type: string
            - type: 'null'
          title: Message
          description: The message for the response.
        data:
          $ref: '#/components/schemas/ListData_ConfigRetrievable_'
        errors:
          anyOf:
            - {}
            - type: 'null'
          title: Errors
          description: The errors for the response.
      type: object
      required:
        - data
      title: ListConfigResponse
      description: Represents the response for listing configurations.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    Status:
      type: string
      enum:
        - SUCCESS
        - FAILURE
      title: Status
      description: Enum class for status
    ListData_ConfigRetrievable_:
      properties:
        results:
          items:
            $ref: '#/components/schemas/ConfigRetrievable'
          type: array
          title: Results
          description: The list of items.
        meta:
          $ref: '#/components/schemas/MetaData'
          description: The metadata for the list.
      type: object
      required:
        - results
        - meta
      title: ListData[ConfigRetrievable]
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    ConfigRetrievable:
      properties:
        data:
          type: object
          title: Data
          description: The data for the configuration.
        config_key:
          type: string
          title: Config Key
          description: The unique identifier for the config.
        created_at:
          type: string
          format: date-time
          title: Created At
          description: The time the configuration was created.
        modified_at:
          type: string
          format: date-time
          title: Modified At
          description: The time the configuration was last updated.
      type: object
      required:
        - data
        - config_key
        - created_at
        - modified_at
      title: ConfigRetrievable
      description: Represents the configuration with the key.
      example:
        config_key: qreate
        data:
          setting_object:
            first_key: value
            second_key: 1
          setting_string: value
    MetaData:
      properties:
        page:
          type: integer
          title: Page
          description: The current page number.
        limit:
          type: integer
          title: Limit
          description: The limit for the number of items to return.
        total:
          type: integer
          title: Total
          description: The total number of items.
      type: object
      required:
        - page
        - limit
        - total
      title: MetaData
      description: Metadata class
  securitySchemes:
    Bearer:
      type: apiKey
      in: header
      name: Authorization

````