Skip to content

Kpis API: List kpis

Endpoint#

PropertyValue
Typequery
MethodGET
Path/api/external/v1/kpis/list_kpis
HandlerOperatelyWeb.Api.Kpis.ListKpis

Authentication#

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

Inputs#

FieldTypeRequiredNullableDefault
space_idid primitive (encoded as string)YesNo-

Outputs#

FieldTypeRequiredNullable
kpisarray of kpi objectYesNo

cURL Example#

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

Response Example#

{
  "kpis": [
    {
      "__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"
    }
  ]
}