---
title: "Asset Details"
method: GET
path: "/assets/{asset_id}"
tags: ["Assets"]
---

# Asset Details

`GET /assets/{asset_id}`

Get details of a specific asset by its serial number, UUID, SIM SID or SIM ICCID.
<div style="background-color: rgba(255, 165, 0, 0.1); border-left: 5px solid orange; padding: 10px;">
    <h4 style="margin-top: 0; color: #ff9900;">Multiple SIM Support & Migration</h4>
    <p>We are transitioning to a model where assets can contain multiple SIM types (Super SIM and PRO SIM).</p>
    <ul>
        <li><b>supersim:</b> Previously the only SIM type, now explicitly named.</li>
        <li><b>prosim:</b> New SIM type</li>
        <li><b>sim (Legacy):</b> Still returned as a duplicate of <code>supersim</code> to prevent breaking changes.</li>
    </ul>
    <p><i>Planned Removal Date for legacy fields: <b>September 1, 2026</b></i></p>
</div>

## Path parameters

- `asset_id` string, required — Serial Number, UUID, SIM SID or SIM ICCID

## Response `200`

Success

- AssetDetailsResponse
  - `uuid` string, required — UUID of the asset
  - `serial_number` string, required — Serial Number of the asset
  - `name` string, required — Name of the asset
  - `type` string, required — Type of the asset
  - `created_at` integer, required — Timestamp of when the asset was created
  - `status` 'active' | 'inactive', required — Overall status of the asset. If active, the asset is able to connect to networks.If inactive, the asset is prevented from connecting to networks.
  - `sim` SIMDetailsResponse
    - `sid` string, required — SID of the SIM
    - `iccid` string, required — ICCID of the SIM
    - `status` 'active' | 'inactive', required — <b>[DEPRECATED - REMOVAL: 2026-09-01]</b><br/>This field is legacy. Use the top-level <code>status</code> instead.
    - `network_group` string, required — Network group of the SIM
    - `fleet` string — <b>[DEPRECATED - REMOVAL: 2026-09-01]</b><br/>This field is legacy and will be removed soon. Use the <code>network_group</code> field instead.
  - `supersim` SuperSIMDetailsResponse
    - `sid` string, required — SID of the SIM
    - `iccid` string, required — ICCID of the SIM
    - `network_group` string, required — Network group of the SIM
  - `prosim` ProSIMDetailsResponse
    - `imsi` string, required — IMSI of the SIM
    - `iccid` string, required — ICCID of the SIM
    - `service_profile` string, required — Service profile of the SIM

## Other responses

- `404` — Asset not found
- `422` — Validation Error

---

[API](https://skmtc.net/sixfab/apis/sixfab-developer-api.md) · [All operations](https://skmtc.net/sixfab/apis/sixfab-developer-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sixfab/sixfab-developer-api/revisions/24ad88fd2124/schema)
