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

# Search List

> Search list



## OpenAPI

````yaml /api-reference/openapi.json post /twitter/list/search
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:
  /twitter/list/search:
    post:
      tags:
        - Lists Endpoints
      summary: Search List
      description: Search list
      operationId: search_list_endpoint_twitter_list_search_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SearchListQuery'
        required: true
      responses:
        '200':
          description: A list of list objects.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SearchListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    SearchListQuery:
      properties:
        query:
          type: string
          title: Query
          description: The query to search for.
        target_count:
          type: integer
          title: Target Count
          description: The number of lists to search.
      type: object
      required:
        - query
        - target_count
      title: SearchListQuery
    SearchListResponse:
      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/ListModel'
          type: array
          title: Data
          description: A list of list objects.
      type: object
      required:
        - code
        - msg
        - data
      title: SearchListResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ListModel:
      properties:
        id:
          type: string
          title: Id
          description: The ID of the list
        name:
          type: string
          title: Name
          description: The name of the list
        description:
          type: string
          title: Description
          description: The description of the list
        is_private:
          type: boolean
          title: Is Private
          description: Whether the list is private
        member_count:
          type: integer
          title: Member Count
          description: The number of members in the list
        subscriber_count:
          type: integer
          title: Subscriber Count
          description: The number of subscribers in the list
      type: object
      required:
        - id
        - name
        - description
        - is_private
        - member_count
        - subscriber_count
      title: ListModel
    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

````