---
title: "List a user's trusted devices"
method: GET
path: "/users/{user_id}/trusted_devices"
tags: ["Users"]
---

# List a user's trusted devices

`GET /users/{user_id}/trusted_devices`

Returns the active trusted devices enrolled by the user.

## Path parameters

- `user_id` string, required

## Response `200`

Success

- object
  - `data` TrustedDevice[], required
    - `object` 'trusted_device', required — String representing the object's type.
    - `id` string, required
    - `platform` 'ios' | 'android', required
    - `app_identifier` string, required
    - `name` string, nullable
    - `algorithm` 'ES256', required
    - `status` 'active' | 'revoked', required
    - `created_at` integer, required — Unix timestamp of creation in milliseconds.
    - `updated_at` integer, required — Unix timestamp of the last update in milliseconds.
    - `last_used_at` integer, nullable — Unix timestamp of the last use in milliseconds.
    - `revoked_at` integer, nullable — Unix timestamp of revocation in milliseconds.
  - `total_count` integer, required — Total number of trusted devices

## Other responses

- `403` — Authorization invalid
- `404` — Resource not found
- `500` — Request was not successful

---

[API](https://skmtc.net/clerk/apis/clerk-backend-api.md) · [All operations](https://skmtc.net/clerk/apis/clerk-backend-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/clerk/clerk-backend-api/versions/cf036e7951d3/schema)
