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

# Get Kpis

> Get kpis.



## OpenAPI

````yaml /openapi-kpi.json get /v1/report_builder/kpis
openapi: 3.0.2
info:
  title: Dcycle API
  description: Local Environment 🏠
  version: 0.0.1
servers: []
security: []
paths:
  /v1/report_builder/kpis:
    get:
      tags:
        - ReportBuilder
      summary: Get Kpis
      description: Get kpis.
      operationId: get_kpis_v1_report_builder_kpis_get
      parameters:
        - required: true
          schema:
            $ref: '#/components/schemas/KPICategoryEnum'
          name: category
          in: query
        - required: true
          schema:
            title: X-Organization-Id
            type: string
            format: uuid
          name: x-organization-id
          in: header
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                title: Response Get Kpis V1 Report Builder Kpis Get
                type: object
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    KPICategoryEnum:
      title: KPICategoryEnum
      enum:
        - environmental
        - narrative_social
        - quantitative_social
      type: string
      description: Enum for kpi category.
    HTTPValidationError:
      title: HTTPValidationError
      type: object
      properties:
        detail:
          title: Detail
          type: array
          items:
            $ref: '#/components/schemas/ValidationError'
    ValidationError:
      title: ValidationError
      required:
        - loc
        - msg
        - type
      type: object
      properties:
        loc:
          title: Location
          type: array
          items:
            type: string
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string

````