> For the complete documentation index, see [llms.txt](https://dev.guardian.hedera.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dev.guardian.hedera.com/guardian/workspace/policies/integrating-3rd-party-data-resources/supported-kanop-api-methods/getaggregationlevelvalues.md).

# getAggregationLevelValues

`GET/projects/{projectId}/aggregationLevels/{level}`

Get Aggregation Level Values.

**Headers**

| Name          | Value              |
| ------------- | ------------------ |
| Content-Type  | `application/json` |
| Authorization | `Bearer <token>`   |

**Body**

| Name      | Type   | Description |
| --------- | ------ | ----------- |
| projectId | string | Project ID  |
| level     | string | Level       |

**Response**

{% tabs %}
{% tab title="200" %}

```json
{
  "property1": [
    "string"
  ],
  "property2": [
    "string"
  ]
}

```

{% endtab %}

{% tab title="422" %}

```json
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}
```

{% endtab %}
{% endtabs %}
