Skip to main content
GET
/
indicators
List all indicators
curl --request GET \
  --url https://app.azalt.co/api/v1/indicators \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "label": "<string>",
    "description": "<string>",
    "unitId": "<string>",
    "unitName": "<string>",
    "tags": [
      "<string>"
    ],
    "expressionParts": [
      {
        "type": "indicator",
        "value": "<string>",
        "metadata": "<unknown>"
      }
    ],
    "datasetItems": [
      {
        "id": "<string>",
        "name": "<string>",
        "datasetId": "<string>",
        "datasetName": "<string>",
        "year": 123,
        "data": "<unknown>"
      }
    ],
    "_count": {
      "datasets": 123
    }
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

includeDatasetItems
boolean

Response

Successful response

id
string
required
name
string
required
label
string
required
description
string | null
required
unitId
string | null
required
unitName
string | null
required
tags
string[] | null
required
expressionParts
object[]
required
datasetItems
object[]
required
_count
object
required