Retrieve a paginated list of active trusted devices for the signed-in user. A logto-verification-id in header and the trusted-devices scope are required. Each entry includes isCurrent, which is true only when the browser's trusted-device cookie passes full credential validation for that record.
GET
/api/my-account/trusted-devices
curl \
--request GET 'https://[tenant_id].logto.app/api/my-account/trusted-devices' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
{
"id": "string",
"userAgent": "string",
"country": "string",
"city": "string",
"createdAt": 42.0,
"lastUsedAt": 42.0,
"expiresAt": 42.0,
"isCurrent": true
}
]