get_twitterapi_endpoint
Retrieve complete documentation for specific Twitter API endpoints including paths, parameters, cURL examples, and code snippets when you know the exact endpoint name.
Instructions
Get complete documentation for a specific TwitterAPI.io endpoint.
USE THIS WHEN: You know the exact endpoint name (e.g., from search results). RETURNS: Full details including path, parameters, cURL example, and code snippets.
Common endpoints:
get_user_info, get_user_followers, get_user_following
tweet_advanced_search, get_tweet_by_id
add_webhook_rule, get_webhook_rules
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| endpoint_name | Yes | Exact endpoint name (use underscores). Examples: 'get_user_info', 'tweet_advanced_search', 'add_webhook_rule' |
Input Schema (JSON Schema)
{
"properties": {
"endpoint_name": {
"description": "Exact endpoint name (use underscores). Examples: 'get_user_info', 'tweet_advanced_search', 'add_webhook_rule'",
"type": "string"
}
},
"required": [
"endpoint_name"
],
"type": "object"
}