Skip to content
Twexapi
English
Esc
navigateopen⌘Jpreview

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/verify
Authorization
AuthorizationBearer token · headerrequired
Global API Bearer Token for TwexAPI. Included as: Authorization: Bearer <YOUR_TWEXAPI_KEY>.
Request Body
requiredapplication/json
Array of string
string
Responses
200A verification object containing the account's badge type and affiliation details.
codeintegerrequired
The status code of the response.
msgstringrequired
The message of the response.
dataAccountVerifyModel[]required
A list of account verification objects.
Show properties
Array of AccountVerifyModel
user_idstring | any
The ID of the user.
Show properties
Any of:
string
string
any
any
screen_namestring | any
The username of the user.
Show properties
Any of:
string
string
any
any
is_blue_verifiedboolean | any
Show properties
Any of:
boolean
boolean
any
any
is_verified_organization_affiliateboolean | any
Show properties
Any of:
boolean
boolean
any
any
is_verifiedboolean | any
True if is_blue_verified or is_verified_organization_affiliate is True
Show properties
Any of:
boolean
boolean
any
any
422Validation Error
detailValidationError[]
Show properties
Array of ValidationError
locstring | integer[]required
Show properties
Array of string | integer
Any of:
string
string
integer
integer
msgstringrequired
typestringrequired
inputany
ctxobject
Interactive ConsolePOST
Interactive Console / Try APIPOST
Live 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"
]'
Response
{
  "code": 0,
  "msg": "string",
  "data": [
    {
      "user_id": "string",
      "screen_name": "string",
      "is_blue_verified": true,
      "is_verified_organization_affiliate": true,
      "is_verified": true
    }
  ]
}