Source: https://atomicwork-preview.docs-staging.pageloop.ai/api-reference/assets/getapi-v-1-assets-asset-id

# Get Asset Details

GET `https://{tenant}.atomicwork.com/api/v1/assets/{asset_id}`

## Authorization

#### X-Api-Key (header, string, required)

## Headers

#### X-Workspace-Id (header, string)

## Path Parameters

#### asset\_id (path, integer, required)

assetId

## Query Parameters

#### source (query, string)

Optional. When provided (e.g. "KANDJI", "MS\_INTUNE", "JAMF"), returns the asset's
view from that integration's source-original ledger row instead of the merged unified
view. The response's asset\_basic\_info.id stays as the unified id (URL is canonical);
asset\_basic\_info.source still reflects the unified's origin; form\_fields and per-row
timestamps reflect the source's contribution. Returns 404 if the asset has no
contribution from the requested source. See asset\_basic\_info.additional\_sources for
the list of valid source values for this asset.

## Response

#### 200

Successful response

#### Request

```bash cURL
curl -X GET 'https://{tenant}.atomicwork.com/api/v1/assets/{asset_id}' \
  -H 'X-Api-Key: <api-key>'
```

```javascript JavaScript
const res = await fetch('https://{tenant}.atomicwork.com/api/v1/assets/{asset_id}', {
  method: 'GET',
  headers: {
    'X-Api-Key': '<api-key>',
  },
});
const data = await res.json();
```

```python Python
import requests

res = requests.get(
    'https://{tenant}.atomicwork.com/api/v1/assets/{asset_id}',
    headers={'X-Api-Key': '<api-key>'}
)
data = res.json()
```
