---
title: "Get current user's client platform metadata."
method: GET
path: "/api/v1/user/me/clients"
---

# Get current user's client platform metadata.

`GET /api/v1/user/me/clients`

**Authentication**: JWT token required
**Purpose**: Shows which client platforms the user has accessed the API from

**Response Schema**:
```json
{
  "data": [
    {
      "id": "uuid",
      "client_type": "qgis_plugin",
      "client_version": "2.2.4",
      "os": "Windows",
      "qgis_version": "3.34.0",
      "last_seen_at": "2026-03-18T12:00:00Z",
      "created_at": "2026-01-15T10:30:00Z"
    }
  ]
}
```

**Client Types**:
- `qgis_plugin`: Trends.Earth QGIS plugin
- `api_ui`: Web admin interface
- `cli`: Command-line interface

**Error Responses**:
- `401 Unauthorized`: JWT token required
- `500 Internal Server Error`: Failed to retrieve clients

## Response `200`

Success

- object

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `500` — Internal Server Error

---

[API](https://skmtc.dev/trends/apis/trends-earth-api.md) · [All operations](https://skmtc.dev/trends/apis/trends-earth-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/trends/trends-earth-api/revisions/6bdbc0b84666/schema)
