Automates Twitter data access and interactions, enabling social listening, trend tracking, and influencer monitoring.
Install this skill
Security score
The twitter skill was audited on Apr 20, 2026 and we found 27 security issues across 1 threat category. Review the findings below before installing.
Categories Tested
Security Issues
Curl to non-GitHub URL
| 69 | ```bash |
| 70 | # Get user info |
| 71 | curl "https://api.aisa.one/apis/v1/twitter/user/info?userName=elonmusk" \ |
| 72 | -H "Authorization: Bearer $AISA_API_KEY" |
| 73 |
Curl to non-GitHub URL
| 73 | |
| 74 | # Get user profile about (account country, verification, username changes) |
| 75 | curl "https://api.aisa.one/apis/v1/twitter/user_about?userName=elonmusk" \ |
| 76 | -H "Authorization: Bearer $AISA_API_KEY" |
| 77 |
Curl to non-GitHub URL
| 77 | |
| 78 | # Batch get user info by IDs |
| 79 | curl "https://api.aisa.one/apis/v1/twitter/user/batch_info_by_ids?userIds=44196397,123456" \ |
| 80 | -H "Authorization: Bearer $AISA_API_KEY" |
| 81 |
Curl to non-GitHub URL
| 81 | |
| 82 | # Get user's latest tweets |
| 83 | curl "https://api.aisa.one/apis/v1/twitter/user/last_tweets?userName=elonmusk" \ |
| 84 | -H "Authorization: Bearer $AISA_API_KEY" |
| 85 |
Curl to non-GitHub URL
| 85 | |
| 86 | # Get user mentions |
| 87 | curl "https://api.aisa.one/apis/v1/twitter/user/mentions?userName=elonmusk" \ |
| 88 | -H "Authorization: Bearer $AISA_API_KEY" |
| 89 |
Curl to non-GitHub URL
| 89 | |
| 90 | # Get user followers |
| 91 | curl "https://api.aisa.one/apis/v1/twitter/user/followers?userName=elonmusk" \ |
| 92 | -H "Authorization: Bearer $AISA_API_KEY" |
| 93 |
Curl to non-GitHub URL
| 93 | |
| 94 | # Get user followings |
| 95 | curl "https://api.aisa.one/apis/v1/twitter/user/followings?userName=elonmusk" \ |
| 96 | -H "Authorization: Bearer $AISA_API_KEY" |
| 97 |
Curl to non-GitHub URL
| 97 | |
| 98 | # Get user verified followers (requires user_id, not userName) |
| 99 | curl "https://api.aisa.one/apis/v1/twitter/user/verifiedFollowers?user_id=44196397" \ |
| 100 | -H "Authorization: Bearer $AISA_API_KEY" |
| 101 |
Curl to non-GitHub URL
| 101 | |
| 102 | # Check follow relationship between two users |
| 103 | curl "https://api.aisa.one/apis/v1/twitter/user/check_follow_relationship?source_user_name=elonmusk&target_user_name=BillGates" \ |
| 104 | -H "Authorization: Bearer $AISA_API_KEY" |
| 105 |
Curl to non-GitHub URL
| 105 | |
| 106 | # Search users by keyword |
| 107 | curl "https://api.aisa.one/apis/v1/twitter/user/search?query=AI+researcher" \ |
| 108 | -H "Authorization: Bearer $AISA_API_KEY" |
| 109 | ``` |
Curl to non-GitHub URL
| 113 | ```bash |
| 114 | # Advanced tweet search (queryType is required: Latest or Top) |
| 115 | curl "https://api.aisa.one/apis/v1/twitter/tweet/advanced_search?query=AI+agents&queryType=Latest" \ |
| 116 | -H "Authorization: Bearer $AISA_API_KEY" |
| 117 |
Curl to non-GitHub URL
| 117 | |
| 118 | # Search top tweets |
| 119 | curl "https://api.aisa.one/apis/v1/twitter/tweet/advanced_search?query=AI+agents&queryType=Top" \ |
| 120 | -H "Authorization: Bearer $AISA_API_KEY" |
| 121 |
Curl to non-GitHub URL
| 121 | |
| 122 | # Get tweets by IDs (comma-separated) |
| 123 | curl "https://api.aisa.one/apis/v1/twitter/tweets?tweet_ids=1895096451033985024" \ |
| 124 | -H "Authorization: Bearer $AISA_API_KEY" |
| 125 |
Curl to non-GitHub URL
| 125 | |
| 126 | # Get tweet replies |
| 127 | curl "https://api.aisa.one/apis/v1/twitter/tweet/replies?tweetId=1895096451033985024" \ |
| 128 | -H "Authorization: Bearer $AISA_API_KEY" |
| 129 |
Curl to non-GitHub URL
| 129 | |
| 130 | # Get tweet quotes |
| 131 | curl "https://api.aisa.one/apis/v1/twitter/tweet/quotes?tweetId=1895096451033985024" \ |
| 132 | -H "Authorization: Bearer $AISA_API_KEY" |
| 133 |
Curl to non-GitHub URL
| 133 | |
| 134 | # Get tweet retweeters |
| 135 | curl "https://api.aisa.one/apis/v1/twitter/tweet/retweeters?tweetId=1895096451033985024" \ |
| 136 | -H "Authorization: Bearer $AISA_API_KEY" |
| 137 |
Curl to non-GitHub URL
| 137 | |
| 138 | # Get tweet thread context (full conversation thread) |
| 139 | curl "https://api.aisa.one/apis/v1/twitter/tweet/thread_context?tweetId=1895096451033985024" \ |
| 140 | -H "Authorization: Bearer $AISA_API_KEY" |
| 141 |
Curl to non-GitHub URL
| 141 | |
| 142 | # Get article by tweet ID |
| 143 | curl "https://api.aisa.one/apis/v1/twitter/article?tweet_id=1895096451033985024" \ |
| 144 | -H "Authorization: Bearer $AISA_API_KEY" |
| 145 | ``` |
Curl to non-GitHub URL
| 149 | ```bash |
| 150 | # Get trending topics (worldwide) |
| 151 | curl "https://api.aisa.one/apis/v1/twitter/trends?woeid=1" \ |
| 152 | -H "Authorization: Bearer $AISA_API_KEY" |
| 153 |
Curl to non-GitHub URL
| 153 | |
| 154 | # Get list members |
| 155 | curl "https://api.aisa.one/apis/v1/twitter/list/members?list_id=1585430245762441216" \ |
| 156 | -H "Authorization: Bearer $AISA_API_KEY" |
| 157 |
Curl to non-GitHub URL
| 157 | |
| 158 | # Get list followers |
| 159 | curl "https://api.aisa.one/apis/v1/twitter/list/followers?list_id=1585430245762441216" \ |
| 160 | -H "Authorization: Bearer $AISA_API_KEY" |
| 161 |
Curl to non-GitHub URL
| 161 | |
| 162 | # Get community info |
| 163 | curl "https://api.aisa.one/apis/v1/twitter/community/info?community_id=1708485837274263614" \ |
| 164 | -H "Authorization: Bearer $AISA_API_KEY" |
| 165 |
Curl to non-GitHub URL
| 165 | |
| 166 | # Get community members |
| 167 | curl "https://api.aisa.one/apis/v1/twitter/community/members?community_id=1708485837274263614" \ |
| 168 | -H "Authorization: Bearer $AISA_API_KEY" |
| 169 |
Curl to non-GitHub URL
| 169 | |
| 170 | # Get community moderators |
| 171 | curl "https://api.aisa.one/apis/v1/twitter/community/moderators?community_id=1708485837274263614" \ |
| 172 | -H "Authorization: Bearer $AISA_API_KEY" |
| 173 |
Curl to non-GitHub URL
| 173 | |
| 174 | # Get community tweets |
| 175 | curl "https://api.aisa.one/apis/v1/twitter/community/tweets?community_id=1708485837274263614" \ |
| 176 | -H "Authorization: Bearer $AISA_API_KEY" |
| 177 |
Curl to non-GitHub URL
| 177 | |
| 178 | # Search tweets from all communities |
| 179 | curl "https://api.aisa.one/apis/v1/twitter/community/get_tweets_from_all_community?query=AI" \ |
| 180 | -H "Authorization: Bearer $AISA_API_KEY" |
| 181 |
Curl to non-GitHub URL
| 181 | |
| 182 | # Get Space detail |
| 183 | curl "https://api.aisa.one/apis/v1/twitter/spaces/detail?space_id=1dRJZlbLkjexB" \ |
| 184 | -H "Authorization: Bearer $AISA_API_KEY" |
| 185 | ``` |