Instagram integration
Instagram is a social media platform for sharing photos, videos, and stories.
- Provider
- Category
- Other
- Setup
- One-click OAuth (we host the OAuth app)
- Actions
- 36 available
Quick start
Call Instagram from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Instagram'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(
"INSTAGRAM_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
OverSkill hosts the OAuth application for Instagram. End-users click Connect on the integration card in your app, complete the OAuth flow with Instagram, and OverSkill stores the access token scoped to their account. No client_id / client_secret configuration needed on your side.
Supported auth schemes: OAUTH2.
Available actions
36 actions exposed via the
Instagram integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
INSTAGRAM_CREATE_CAROUSEL_CONTAINER -
INSTAGRAM_CREATE_MEDIA_CONTAINER -
INSTAGRAM_CREATE_POST -
INSTAGRAM_DELETE_COMMENT -
INSTAGRAM_DELETE_MESSENGER_PROFILE -
INSTAGRAM_GET_CONVERSATION -
INSTAGRAM_GET_IG_COMMENT_REPLIES -
INSTAGRAM_GET_IG_MEDIA -
INSTAGRAM_GET_IG_MEDIA_CHILDREN -
INSTAGRAM_GET_IG_MEDIA_COMMENTS -
INSTAGRAM_GET_IG_MEDIA_INSIGHTS -
INSTAGRAM_GET_IG_USER_CONTENT_PUBLISHING_LIMIT
Show all 36 actions
-
INSTAGRAM_GET_IG_USER_LIVE_MEDIA -
INSTAGRAM_GET_IG_USER_MEDIA -
INSTAGRAM_GET_IG_USER_STORIES -
INSTAGRAM_GET_IG_USER_TAGS -
INSTAGRAM_GET_MESSENGER_PROFILE -
INSTAGRAM_GET_PAGE_CONVERSATIONS -
INSTAGRAM_GET_POST_COMMENTS -
INSTAGRAM_GET_POST_INSIGHTS -
INSTAGRAM_GET_POST_STATUS -
INSTAGRAM_GET_USER_INFO -
INSTAGRAM_GET_USER_INSIGHTS -
INSTAGRAM_GET_USER_MEDIA -
INSTAGRAM_LIST_ALL_CONVERSATIONS -
INSTAGRAM_LIST_ALL_MESSAGES -
INSTAGRAM_MARK_SEEN -
INSTAGRAM_POST_IG_COMMENT_REPLIES -
INSTAGRAM_POST_IG_MEDIA_COMMENTS -
INSTAGRAM_POST_IG_USER_MEDIA -
INSTAGRAM_POST_IG_USER_MEDIA_PUBLISH -
INSTAGRAM_POST_IG_USER_MENTIONS -
INSTAGRAM_REPLY_TO_COMMENT -
INSTAGRAM_SEND_IMAGE -
INSTAGRAM_SEND_TEXT_MESSAGE -
INSTAGRAM_UPDATE_MESSENGER_PROFILE
Build with Instagram
Open OverSkill, describe what you want to build, and reference Instagram in your prompt — the AI will wire up the integration automatically.