Overview
Returns a function that fetches a paginated list of the users the current user has blocked (their outbound blocks), each row carrying a public profile summary. This is the private “manage / way back to unblock” surface — it exposes only the current user’s own blocks.Usage Example
Parameters
The hook returns a function. That function accepts an optional object:number
default:"1"
Page number for pagination.
number
default:"20"
Number of results per page. Max
100.Returns
APaginatedResponse<BlockedUser>, where each BlockedUser is:
string
ID of the block record.
User | null
Public profile of the blocked user.
string
ISO timestamp of when the block was created.

