> ## 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.

# List all KPIs

> Lists all KPIs available for use.



## OpenAPI

````yaml https://console.lomaplatform.com/api/vendor/v1/openapi get /api/vendor/v1/kpis
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:
    get:
      tags:
        - KPIs
      summary: List all KPIs
      description: Lists all KPIs available for use.
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                type: array
                items:
                  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
                  - id: 9f0mB9UcJPsN9KWV
                    name: Canvassing Hours
                    unit: null
                    identifier: null
                    description: Number of hours spent canvassing in the community.
                    is_delta_positive_better: true
      security:
        - apiKeyHeader: []
components:
  securitySchemes:
    apiKeyHeader:
      type: apiKey
      in: header
      name: API-Key
      description: API Key for the vendor

````