> ## Documentation Index
> Fetch the complete documentation index at: https://docs.twexapi.io/llms.txt
> Use this file to discover all available pages before exploring further.

# 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.



## OpenAPI

````yaml /api-reference/openapi.json post /x/account/verify
openapi: 3.1.0
info:
  title: Twitter API Service
  description: |2-

            A comprehensive Twitter API service that provides various Twitter operations including:
            
            * **Search Operations**: Advanced search, hashtags, cashtags
            * **Tweet Operations**: Post, like, retweet, quote, bookmark, delete
            * **User Operations**: Batch user information retrieval
            * **Influencer Operations**: Get tweets from top influencers
            
            All endpoints return standardized responses in the format:
            ```json
            {
                "code": 200,
                "msg": "success", 
                "data": {...}
            }
            ```
            
            ## Authentication
            
            This API uses Bearer token authentication. Include your token in the Authorization header:
            ```
            Authorization: Bearer your_token_here
            ```
            
  contact:
    name: API Support
    email: support@twitterxapi.com
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.twexapi.io
    description: Development server
security: []
paths:
  /x/account/verify:
    post:
      tags:
        - Users Endpoints
      summary: Verify Account Status
      description: >-
        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.
      operationId: account_verify_api_x_account_verify_post
      requestBody:
        content:
          application/json:
            schema:
              items:
                type: string
              type: array
              title: Targets
              description: The IDs or usernames of the users.
              examples:
                - '1696160451770429440'
                - elonmusk
        required: true
      responses:
        '200':
          description: >-
            A verification object containing the account's badge type and
            affiliation details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccountVerifyResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    AccountVerifyResponse:
      properties:
        code:
          type: integer
          title: Code
          description: The status code of the response.
        msg:
          type: string
          title: Msg
          description: The message of the response.
        data:
          items:
            $ref: '#/components/schemas/AccountVerifyModel'
          type: array
          title: Data
          description: A list of account verification objects.
      type: object
      required:
        - code
        - msg
        - data
      title: AccountVerifyResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    AccountVerifyModel:
      properties:
        user_id:
          anyOf:
            - type: string
            - type: 'null'
          title: User Id
          description: The ID of the user.
        screen_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Screen Name
          description: The username of the user.
        is_blue_verified:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Is Blue Verified
        is_verified_organization_affiliate:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Is Verified Organization Affiliate
        is_verified:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Is Verified
          description: >-
            True if is_blue_verified or is_verified_organization_affiliate is
            True
      type: object
      title: AccountVerifyModel
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````