Block Queue

Users may be blocked while this page is open, refresh to update.   import

holy shit your queue is huge, results have been limited to the first 10,000

Blocklist import currently only support json files. files must be arrays containing the following type:

interface BlockUser {
	user_id: string,
	user: {
		name: string,
		screen_name: string,
	},
	reason: number,
	external_reason?: string,
}

where reason is an int that refers to one of the following values:

const ReasonExternal: number                = -1; // use external_reason
const ReasonBlueVerified: number            = 0;  // twitter blue user
const ReasonNftAvatar: number               = 1;  // user has NFT avatar
const ReasonBusinessVerified: number        = 2;  // verified via a business
const ReasonTransphobia: number             = 3;  // user is known transphobe
const ReasonPromoted: number                = 4;  // promoted tweets
const ReasonDisallowedWordsOrEmojis: number = 5;  // disallowed words or emojis
const ReasonUsingBlueFeatures: number       = 6;  // using Twitter Blue features

reason can also be assigned -1 and provided an external_reason.
external reason should be omitted if reason is not -1.

loading...