# Get user devices

Gets a list of user’s devices.
 

{% html name="div" attrs={"class": "notice"} %}
Notice

Rate limits for client-side methods are applied to this method.
{% /html %}

Endpoint: GET /users/me/devices
Version: v1
Security: Bearer

## Response 200 fields (application/json):

  - `device` (string, required)
    Manufacturer and model name of the device.

  - `id` (integer, required)
    Device ID generated by the Xsolla Login server. It is not the same as the device_id parameter from the Auth via device ID ([JWT](https://developers.xsolla.com/api/login/operation/jwt-auth-via-device-id) and [OAuth 2.0](https://developers.xsolla.com/api/login/operation/oauth-20-auth-via-device-id)) call.

  - `last_used_at` (string, required)
    Date and time of the last user login via the device in the [RFC 3339 format](https://www.ietf.org/rfc/rfc3339.txt).

  - `type` (string, required)
    Type of the device.
    Enum: "android", "ios"

## Response 401 fields (application/json):

  - `error` (object, required)

  - `error.code` (string, required)
    Error code.
    Example: "003-061"

  - `error.description` (string, required)
    Error description.
    Example: "Object not found."

  - `error.details` (object)
    Additional information.

## Response 429 fields (application/json):

  - `error` (object, required)

  - `error.code` (string, required)
    Error code.
    Example: "003-061"

  - `error.description` (string, required)
    Error description.
    Example: "Object not found."

  - `error.details` (object)
    Additional information.


