Verify Account Status
Retrieves the verification metadata for a specific account. This endpoint identifies whether an account holds a Blue Verified status (authenticity check) or is an Official Organization Affiliate (gold/grey labels). The maximum input quantity is limited by your plan’s QPS. To pass larger input quantity limits, upgrade your plan to get higher QPS.
Back to API Reference
/Users Endpoints
POST
/x/account/verifyAuthorization
AuthorizationBearer token · headerrequiredGlobal API Bearer Token for TwexAPI. Included as: Authorization: Bearer <YOUR_TWEXAPI_KEY>.
Request Body
requiredapplication/jsonArray of
stringstringResponses
200A verification object containing the account's badge type and affiliation details.
codeintegerrequiredThe status code of the response.
msgstringrequiredThe message of the response.
dataAccountVerifyModel[]requiredA list of account verification objects.
Show propertiesHide properties
Array of
AccountVerifyModeluser_idstring | anyThe ID of the user.
Show propertiesHide properties
Any of:
string
stringany
anyscreen_namestring | anyThe username of the user.
Show propertiesHide properties
Any of:
string
stringany
anyis_blue_verifiedboolean | anyShow propertiesHide properties
Any of:
boolean
booleanany
anyis_verified_organization_affiliateboolean | anyShow propertiesHide properties
Any of:
boolean
booleanany
anyis_verifiedboolean | anyTrue if is_blue_verified or is_verified_organization_affiliate is True
Show propertiesHide properties
Any of:
boolean
booleanany
any422Validation Error
detailValidationError[]Show propertiesHide properties
Array of
ValidationErrorlocstring | integer[]requiredShow propertiesHide properties
Array of
string | integerAny of:
string
stringinteger
integermsgstringrequiredtypestringrequiredinputanyctxobject⚡Interactive ConsolePOST
⚡Interactive Console / Try APIPOSTLive Console
🌐Target Server:
https://api.twexapi.io● Production Ready
🔍
Public Data Read (TwexAPI Key Only, No Twitter Cookie Required)
This endpoint queries public Twitter data — no Twitter account or Cookie required! Simply enter your TwexAPI Platform Key (Bearer Token) in the "API Authorization" section below to test.
🔑API Authorization
📝Request Bodyapplication/json
📡
No Response Yet
Configure parameters in the Request tab and click Send Request below.
Request
curl -X POST "https://api.twexapi.io/x/account/verify" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '[
"1696160451770429440",
"elonmusk"
]'const response = await fetch("https://api.twexapi.io/x/account/verify", {
method: "POST",
headers: {
"Authorization": "Bearer YOUR_TOKEN",
"Content-Type": "application/json"
},
body: JSON.stringify([
"1696160451770429440",
"elonmusk"
])
});import requests
response = requests.post(
"https://api.twexapi.io/x/account/verify",
headers={
"Authorization": "Bearer YOUR_TOKEN",
"Content-Type": "application/json"
},
json=[
"1696160451770429440",
"elonmusk"
],
)Response
{
"code": 0,
"msg": "string",
"data": [
{
"user_id": "string",
"screen_name": "string",
"is_blue_verified": true,
"is_verified_organization_affiliate": true,
"is_verified": true
}
]
}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}