POST
/
v1
/
account.refreshSession
Refresh session token
curl --request POST \
  --url https://api.steamsets.com/v1/account.refreshSession \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "refreshToken": "<string>"
}'
{
  "$schema": "https://api.steamsets.com/schemas/V1AccountRefreshSessionBody.json",
  "refreshExpiresAt": "2023-01-01T00:00:00Z",
  "refreshToken": "<string>",
  "sessionExpiresAt": "2023-01-01T00:00:00Z",
  "sessionToken": "auth_"
}
This endpoint is publicly accessible without authentication

Public Access

This endpoint does not require authentication and can be accessed by anyone with a valid refresh token. It’s used to renew expired session tokens.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

User-Agent
string
X-Forwarded-For
string

Body

application/json

Response

OK

The response is of type object.