Developer docs

Twitter integration

Social media posting and engagement

Updated June 2026 79 actions available

Provider
twitter
Category
Social Media
Setup
See setup section below
Actions
79 available

Quick start

Call Twitter from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Twitter's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.

// In your generated app's worker handler:
const composio = composioClient(env);

const result = await composio.execute(
  "TWITTER_ACTION_NAME",
  { /* action parameters — see Actions section below */ }
);

return new Response(JSON.stringify(result), {
  headers: { "Content-Type": "application/json" }
});

Replace ACTION_NAME with one of the slugs listed in the Actions section below. The composio client handles auth + rate limits automatically — no API key is exposed to user code.

Setup

Setup details for Twitter aren't published yet. If you need this integration in production, contact the OverSkill team and we'll prioritize it.

Available actions

79 actions exposed via the Twitter integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 79 actions
  • TWITTER_FOLLOWING_BY_USER_ID
  • TWITTER_FOLLOW_LIST
  • TWITTER_FOLLOW_USER
  • TWITTER_FULL_ARCHIVE_SEARCH
  • TWITTER_GET_BLOCKED_USERS
  • TWITTER_GET_COMPLIANCE_JOB
  • TWITTER_GET_COMPLIANCE_JOBS
  • TWITTER_GET_DM_CONVERSATION_EVENTS
  • TWITTER_GET_DM_EVENT
  • TWITTER_GET_LIST
  • TWITTER_GET_LIST_FOLLOWERS
  • TWITTER_GET_LIST_MEMBERS
  • TWITTER_GET_MEDIA_UPLOAD_STATUS
  • TWITTER_GET_MUTED_USERS
  • TWITTER_GET_OPENAPI_SPEC
  • TWITTER_GET_POST_ANALYTICS
  • TWITTER_GET_POST_RETWEETERS_ACTION
  • TWITTER_GET_POST_RETWEETS
  • TWITTER_GET_POST_USAGE
  • TWITTER_GET_RECENT_DM_EVENTS
  • TWITTER_GET_SPACE_BY_ID
  • TWITTER_GET_SPACE_POSTS
  • TWITTER_GET_SPACES_BY_CREATORS
  • TWITTER_GET_SPACES_BY_IDS
  • TWITTER_GET_SPACE_TICKET_BUYERS
  • TWITTER_GET_USER_BY_ID
  • TWITTER_GET_USER_FOLLOWED_LISTS
  • TWITTER_GET_USER_LIST_MEMBERSHIPS
  • TWITTER_GET_USER_OWNED_LISTS
  • TWITTER_GET_USER_PINNED_LISTS
  • TWITTER_GET_USERS_BY_IDS
  • TWITTER_HIDE_REPLIES
  • TWITTER_INITIALIZE_MEDIA_UPLOAD
  • TWITTER_LIST_POST_LIKERS
  • TWITTER_LIST_POSTS_TIMELINE_BY_LIST_ID
  • TWITTER_MUTE_USER
  • TWITTER_PIN_LIST
  • TWITTER_POST_DELETE_BY_POST_ID
  • TWITTER_POST_LOOKUP_BY_POST_ID
  • TWITTER_POST_LOOKUP_BY_POST_IDS
  • TWITTER_RECENT_SEARCH
  • TWITTER_REMOVE_LIST_MEMBER
  • TWITTER_REMOVE_POST_FROM_BOOKMARKS
  • TWITTER_RETRIEVE_DM_CONVERSATION_EVENTS
  • TWITTER_RETRIEVE_POSTS_THAT_QUOTE_A_POST
  • TWITTER_RETURNS_POST_OBJECTS_LIKED_BY_THE_PROVIDED_USER_ID
  • TWITTER_RETWEET_POST
  • TWITTER_SEARCH_FULL_ARCHIVE_COUNTS
  • TWITTER_SEARCH_RECENT_COUNTS
  • TWITTER_SEARCH_SPACES
  • TWITTER_SEND_A_NEW_MESSAGE_TO_A_USER
  • TWITTER_SEND_DM_TO_CONVERSATION
  • TWITTER_STREAM_POST_LABELS
  • TWITTER_UNFOLLOW_LIST
  • TWITTER_UNFOLLOW_USER
  • TWITTER_UNLIKE_POST
  • TWITTER_UNMUTE_USER
  • TWITTER_UNPIN_LIST
  • TWITTER_UNRETWEET_POST
  • TWITTER_UPDATE_LIST
  • TWITTER_UPLOAD_LARGE_MEDIA
  • TWITTER_UPLOAD_MEDIA
  • TWITTER_USER_HOME_TIMELINE_BY_USER_ID
  • TWITTER_USER_LIKE_POST
  • TWITTER_USER_LOOKUP_BY_USERNAME
  • TWITTER_USER_LOOKUP_BY_USERNAMES
  • TWITTER_USER_LOOKUP_ME

Build with Twitter

Open OverSkill, describe what you want to build, and reference Twitter in your prompt — the AI will wire up the integration automatically.