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

# Get KPI

> Retrieves a specific KPI.



## OpenAPI

````yaml https://console.lomaplatform.com/api/vendor/v1/openapi get /api/vendor/v1/kpis/{kpiId}
openapi: 3.1.0
info:
  title: LOMA Vendor API
  version: 1.0.0
  description: >-
    API for managing vendor data on LOMA.

    ### Authentication


    Your API Key should be passed in the `API-Key` header formatted as
    `KEY_ID:KEY_SECRET`.


    Vendors can create API keys in the LOMA console.
  contact:
    email: support@lomaplatform.com
servers:
  - url: https://console.lomaplatform.com
security: []
paths:
  /api/vendor/v1/kpis/{kpiId}:
    get:
      tags:
        - KPIs
      summary: Get KPI
      description: Retrieves a specific KPI.
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                  name:
                    type: string
                  unit:
                    type:
                      - string
                      - 'null'
                  identifier:
                    type:
                      - string
                      - 'null'
                  description:
                    type:
                      - string
                      - 'null'
                  is_delta_positive_better:
                    type: boolean
                    description: >-
                      If true, a positive change in the KPI value is considered
                      better.
                required:
                  - id
                  - name
                  - unit
                  - identifier
                  - description
                  - is_delta_positive_better
                example:
                  id: jujIJxyvlDo5qunI
                  name: Fundraising Events
                  unit: null
                  identifier: null
                  description: The number of fundraising events booked.
                  is_delta_positive_better: true
        '404':
          description: KPI not found.
      security:
        - apiKeyHeader: []
components:
  securitySchemes:
    apiKeyHeader:
      type: apiKey
      in: header
      name: API-Key
      description: API Key for the vendor

````