---
title: "List auth sessions"
method: GET
path: "/auth/sessions"
tags: ["Auth"]
---

# List auth sessions

`GET /auth/sessions`

Retrieve all active authentication sessions for the current user. Requires authentication.

## Response `200`

Success

- AuthSessionResponse[]
  - `id_hash` string, required — The base64url-encoded session id hash
  - `client_info` object, nullable — Client metadata recorded for this session
    - `platform` string, nullable — The platform reported by the client
    - `os` string, nullable — The operating system reported by the client
    - `browser` string, nullable — The browser reported by the client
    - `device` 'mobile' | 'desktop', required — Device class of the session, decided by the server
    - `location` AuthSessionLocation
      - `city` string, nullable — The city name reported by the client
      - `region` string, nullable — The region reported by the client
      - `country` string, nullable — The country reported by the client
  - `masked_ip` string, nullable, required — Semi-redacted IP address recorded for this session
  - `approx_last_used_at` string, date-time, nullable — Approximate timestamp of the last session activity
  - `current` boolean, required — Whether this is the current session making the request

## Other responses

- `400` — Bad Request - The request was malformed or contained invalid data
- `401` — Unauthorized - Authentication is required or the token is invalid
- `403` — Forbidden - You do not have permission to perform this action
- `429` — Too Many Requests - You are being rate limited
- `500` — Internal Server Error - An unexpected error occurred

---

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