> For the complete documentation index, see [llms.txt](https://docs.guardianservice.app/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.guardianservice.app/technical-information/users/standard-registry-users-schemas-and-policies/policies/integrating-3rd-party-data-resources/supported-kanop-api-methods/getsummarymetricsforrequest.md).

# getSummaryMetricsForRequest

<mark style="color:green;">`GET`</mark>`/projects/{projectId}/requests/{requestId}/metrics`

Get Summary Metrics For Request.

**Headers**

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

**Body**

| Name      | Type   | Description |
| --------- | ------ | ----------- |
| projectId | string | Project ID  |
| requestId | number | Request ID  |

**Response**

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

```json
{
  "meta": {
    "version": "v1",
    "requestTimestamp": 1753782514,
    "page": {
      "size": 1,
      "current": 1
    }
  },
  "context": {
    "projectId": 0,
    "runId": 0
  },
  "results": {
    "forestCover": 0,
    "canopyHeightMean": 0,
    "treeHeightMean": 0,
    "biomass": 0,
    "carbon": 0,
    "co2eq": 0
  }
}
```

{% endtab %}

{% tab title="422" %}

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

{% endtab %}
{% endtabs %}
