### Tweet Endpoints Source: https://docs.twitterapi.io/introduction/index Access comprehensive endpoints for retrieving tweet details, searching for tweets, and analyzing tweet metrics. This section covers functionalities like getting tweets by IDs and performing advanced searches. ```APIDOC ## GET /api-reference/endpoint/get_tweet_by_ids ### Description Retrieves tweet details based on provided tweet IDs. ### Method GET ### Endpoint /api-reference/endpoint/get_tweet_by_ids ### Parameters #### Query Parameters - **ids** (string) - Required - Comma-separated list of tweet IDs. ### Response #### Success Response (200) - **data** (array) - Array of tweet objects. - **includes** (object) - Object containing included data like users and media. #### Response Example ```json { "data": [ { "id": "1234567890", "text": "This is a tweet." } ], "includes": { "users": [ { "id": "9876543210", "name": "Example User" } ] } } ``` ``` ```APIDOC ## GET /api-reference/endpoint/tweet_advanced_search ### Description Performs advanced search for tweets using various filters such as keywords, dates, and more. ### Method GET ### Endpoint /api-reference/endpoint/tweet_advanced_search ### Parameters #### Query Parameters - **query** (string) - Required - The search query string with operators. - **max_results** (integer) - Optional - The number of results to return (10-100). ### Response #### Success Response (200) - **data** (array) - Array of tweet objects matching the search criteria. #### Response Example ```json { "data": [ { "id": "1234567890", "text": "Search result tweet." } ] } ``` ``` -------------------------------- ### User Endpoints Source: https://docs.twitterapi.io/introduction/index Manage and retrieve user information, including profiles, follower lists, and following lists. This section covers endpoints for accessing user data by username or ID. ```APIDOC ## GET /api-reference/endpoint/get_user_by_username ### Description Retrieves a user's profile information based on their username. ### Method GET ### Endpoint /api-reference/endpoint/get_user_by_username ### Parameters #### Path Parameters - **username** (string) - Required - The username of the user to retrieve. ### Response #### Success Response (200) - **data** (object) - User profile object. #### Response Example ```json { "data": { "id": "9876543210", "name": "Example User", "username": "exampleuser" } } ``` ``` ```APIDOC ## GET /api-reference/endpoint/get_user_followers ### Description Retrieves a list of users who are followers of a specified user. ### Method GET ### Endpoint /api-reference/endpoint/get_user_followers ### Parameters #### Path Parameters - **user_id** (string) - Required - The ID of the user whose followers to retrieve. #### Query Parameters - **max_results** (integer) - Optional - The number of results to return. ### Response #### Success Response (200) - **data** (array) - Array of follower user objects. #### Response Example ```json { "data": [ { "id": "111222333", "name": "Follower One" }, { "id": "444555666", "name": "Follower Two" } ] } ``` ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.