# Retrieve info on Data Hub This API call allows you to retrieve the details of a specific digital footprint score by its unique identifier. ## Endpoint * **URL:** `/dataHub/{id}` * **Method:** `GET` ## Headers Ensure you include the following headers in your request: * `Accept: application/json` * `X-Api-Key: YOUR_API_KEY` (replace `YOUR_API_KEY` with your actual API key) ## Path parameters * `id` (required): The unique identifier of the request for which you want to retrieve the identification. This should be included in the URL path. Example: `123e4567-e89b-12d3-a456-426614174000` ## Example cURL API call ``` curl --location 'https://test-eu-ie1-api.namirialonboarding.com/api/v2/dataHub/YOUR_REQUEST_ID' \ --header 'Accept: application/json' \ --header 'X-Api-Service: YOUR_API_KEY' ``` Replace `YOUR_API_KEY` with your actual API key, `YOUR_REQUEST_ID` with the ID of the request. ## Responses * **200 OK** * **Description:** The score of the digital footprint. * **Example Response:** ```json { "id": "9792XXXX-XXXX-XXXX-XXXX-XXXXd7eb369e", "status": "COMPLETED", "digitalFootprintScore": "HIGH" } ```