Skip to main content
GET
/
auth
/
sessions
List auth sessions
curl --request GET \
  --url https://api.fluxer.app/v1/auth/sessions \
  --header 'Authorization: <api-key>'
[
  {
    "id_hash": "<string>",
    "current": true,
    "client_info": {
      "platform": "<string>",
      "os": "<string>",
      "browser": "<string>",
      "location": {
        "city": "<string>",
        "region": "<string>",
        "country": "<string>"
      }
    },
    "approx_last_used_at": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

User session token from login: Authorization: <token> (no prefix). Prefer a bot account over user tokens where possible.

Response

Success

id_hash
string
required

The base64url-encoded session id hash

current
boolean
required

Whether this is the current session making the request

client_info
object

Client metadata recorded for this session

approx_last_used_at
string<date-time> | null

Approximate timestamp of the last session activity