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