# Retrieves detailed experience metrics for a device Returns indicator-wise experience metrics, including scores, health status, and metric details for the specified profile and resource, with optional filtering for metrics with issues. ## Endpoint `GET /intelligence/api/score/device/profile/{scoreProfileId}/{agentResourceId}/nodes` ## Request URL https://[{serverurl}](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)/intelligence/api/score/device/profile/{scoreProfileId}/{agentResourceId}/nodes ## Scope `DesktopCentralCloud.DEX.READ` ## Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Request Headers - **Accept** `string` — Mandatory - `application/getDeviceNode.v1+json` ### Path Parameters - **scoreProfileId** `string` — Mandatory - Score profile identifier. Fetch from [Get Metadata](https://www.manageengine.com/products/desktop-central/help/api/cloud/dex-get-metadata.html). - **agentResourceId** `string` — Mandatory - Device resource identifier obtained from the SoM Get Computers API (`/api/1.4/som/computers`). ### Query Parameters - **filterType** `string` — Optional - List all the metrics or only the metrics with issues. ## Sample Request ```curl curl --request GET \ --url https://appdomains/intelligence/api/score/device/profile/{scoreProfileId}/{agentResourceId}/nodes \ --header 'Accept: application/getDeviceNode.v1+json' \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP Code 200 #### Response Body — `application/json` `JSON Array` - `JSON Object` ## Possible Response Codes - **200** — HTTP code ## Sample Response: HTTP 200 ```json [ { "indicator": "Device Performance", "metrics": [ { "metric_id": "3", "score": "100", "scoreDisplayName": "CPU Usage", "scoreHealth": 2, "primaryRenderText": "Average CPU usage (1 day): 7.98 %" }, { "metric_id": "4", "score": "97", "scoreDisplayName": "CPU Interrupt", "scoreHealth": 2, "primaryRenderText": "Average CPU interrupt (7 days): 0.17 %" } ] }, { "indicator": "Application Reliability", "metrics": [ { "metric_id": "16", "score": "100", "scoreDisplayName": "Application Crash", "scoreHealth": 2, "primaryRenderText": "Application crash (7 days): 0 crashes" } ] } ] ``` ## Rate Limit ![](https://www.zohowebstatic.com/sites/zweb/images/people/ico-help.png) **Duration:** 1 minute | **Threshold:** 30 | **Lock period:** 5 minutes Duration - Time window for the threshold. Threshold - Number of API calls allowed within the specified duration. Lock Period - Wait time before consecutive API requests.