Skip to main content
GET
/
v1
/
users
/
me
/
punishments
curl "https://portal-api.7331.org/v1/users/me/punishments?offset=0&limit=10" \
  -b "psession=YOUR_SESSION"
[
  {
    "id": 1,
    "action_type": "PLATFORM_WARNING",
    "reason": "Spamming in chat",
    "is_lifted": false,
    "expires_at": null,
    "lifted_at": null,
    "created_at": "2026-02-10T14:30:00Z"
  },
  {
    "id": 2,
    "action_type": "PLATFORM_TIMEOUT",
    "reason": "Repeated violations",
    "is_lifted": true,
    "expires_at": "2026-02-11T14:30:00Z",
    "lifted_at": "2026-02-11T11:30:00Z",
    "created_at": "2026-02-11T10:00:00Z"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.7331.org/llms.txt

Use this file to discover all available pages before exploring further.

Requires an active session cookie. Returns a paginated list of the user’s own moderation action records.
offset
integer
default:"0"
Pagination offset. Minimum 0.
limit
integer
default:"50"
Page size. Range: 1-100.

Response

Returns an array of moderation action objects.
id
integer
required
Moderation action ID.
action_type
string
required
Type of moderation action. One of: PLATFORM_WARNING, PLATFORM_TIMEOUT, PLATFORM_BAN, CHAT_BAN, CHAT_MUTE, CHAT_KICK.
reason
string
Reason for the action. May be null.
is_lifted
boolean
required
Whether the action has been lifted.
expires_at
string
When the action expires (UTC, ISO 8601). null for permanent.
lifted_at
string
When the action was lifted (UTC, ISO 8601). null if still active.
created_at
string
required
When the action was issued (UTC).
curl "https://portal-api.7331.org/v1/users/me/punishments?offset=0&limit=10" \
  -b "psession=YOUR_SESSION"
[
  {
    "id": 1,
    "action_type": "PLATFORM_WARNING",
    "reason": "Spamming in chat",
    "is_lifted": false,
    "expires_at": null,
    "lifted_at": null,
    "created_at": "2026-02-10T14:30:00Z"
  },
  {
    "id": 2,
    "action_type": "PLATFORM_TIMEOUT",
    "reason": "Repeated violations",
    "is_lifted": true,
    "expires_at": "2026-02-11T14:30:00Z",
    "lifted_at": "2026-02-11T11:30:00Z",
    "created_at": "2026-02-11T10:00:00Z"
  }
]