Skip to content

Kpis API: Get kpi

Endpoint#

PropertyValue
Typequery
MethodGET
Path/api/external/v1/kpis/get_kpi
HandlerOperatelyWeb.Api.Kpis.GetKpi

Authentication#

  • Requires a valid API token.
  • Read-only and full-access tokens can execute this query.

Inputs#

FieldTypeRequiredNullableDefault
kpi_idid primitive (encoded as string)YesNo-

Outputs#

FieldTypeRequiredNullable
kpikpi objectYesNo

cURL Example#

Copied
curl --request GET \
  --url "https://app.operately.com/api/external/v1/kpis/get_kpi?kpi_id=value" \
  --header "Authorization: Bearer ${OPERATELY_API_TOKEN}"

Response Example#

{
  "kpi": {
    "__typename": "value",
    "cadence": "value",
    "champion": "<person>",
    "entries": [
      "<kpi_entry>"
    ],
    "id": "value",
    "inserted_at": "2026-01-01T09:30:00Z",
    "latest_entry": "<kpi_entry>",
    "name": "value",
    "space_id": "value",
    "unit": "value",
    "updated_at": "2026-01-01T09:30:00Z"
  }
}