Skip to main content

GET /v2/devices

Lists all registered devices for the authenticated user.

Used in flow: Check device registration status before registering a new device, or when logging in

Authentication: JWT (Access Token)

Request

Authorization: Bearer <access_token>

Response

200 OK
{
"devices": [
{
"device_verifying_key": "<hex encoded uncompressed public key: 04 || X || Y>",
"device_name": "iPhone 15 Pro",
"is_active": true,
"created_at": "2025-01-15T10:30:00Z"
}
]
}