Skip to content

List the authenticated user's blocked users

GET
/user/list_blocked
page
integer

Page number of results to return (1-based)

limit
integer

Page size of results

BlockedUserList

Media type application/json
Array<object>
BlockedUser represents a blocked user.
object
block_id
integer format: int64
created_at
string format: date-time
Example generated
[
{
"block_id": 1,
"created_at": "2026-04-15T12:00:00Z"
}
]

APIUnauthorizedError is a unauthorized error response

Media type application/json
object
message
string
url
string
Example generated
{
"message": "example",
"url": "example"
}

APIForbiddenError is a forbidden error response

Media type application/json
object
message
string
url
string
Example generated
{
"message": "example",
"url": "example"
}