composio
Execute actions on all connected accounts (Gmail, Twitter, Notion, Calendar, Drive, Discord) - MASTER SKILL
npx skills add composio
composio
Execute actions on all connected accounts (Gmail, Twitter, Notion, Calendar, Drive, Discord) - MASTER SKILL
npx skills add composio
composio
Execute actions on all connected accounts (Gmail, Twitter, Notion, Calendar, Drive, Discord) - MASTER SKILL
Composio - All Connected Services
Execute actions on ALL your connected accounts. Everything is already connected and working!
API Key
ak_Jf9drjMKYj65KMZMn_K9
Connected Accounts (ALL ACTIVE ✅)
| Service | Email / Account | Account ID |
|---------|----------------|------------|
| Gmail | [email protected] | ee2b5a69-f814-4be0-8d6f-b4f25c9913d2 |
| Gmail | [email protected] | c23afb0f-c86f-4e4d-8014-d47483e2e396 |
| Gmail | [email protected] | d8e56054-8693-4e01-98bd-269ff2abba03 |
| Notion | — | 68d359a9-bdfa-43fe-a71e-4006a5f31419 |
| Twitter | — | 7f8014ac-1095-4754-a2f5-08590a6107fd |
| Discord | — | f0043e24-6f7c-4a97-8cf1-1558b00a9598 |
| Google Calendar | — | 0d8b48dc-624f-45bb-b4e0-60f4958d9051 |
| Google Drive | — | d4278058-e4ec-4afd-b05c-e395405160d5 |
| Google Analytics | — | 71af20f0-e40a-45a5-ba4a-971d6e0ab0a2 |
API Format (v2)
curl -X POST "https://backend.composio.dev/api/v2/actions/{ACTION}/execute" \
-H "X-API-Key: ak_Jf9drjMKYj65KMZMn_K9" \
-H "Content-Type: application/json" \
-d '{"connectedAccountId":"ACCOUNT_ID","input":{...}}'
---
NOTION
List Users:
curl -X POST "https://backend.composio.dev/api/v2/actions/NOTION_LIST_USERS/execute" \
-H "X-API-Key: ak_Jf9drjMKYj65KMZMn_K9" \
-H "Content-Type: application/json" \
-d '{"connectedAccountId":"68d359a9-bdfa-43fe-a71e-4006a5f31419","input":{}}'
Create Page:
curl -X POST "https://backend.composio.dev/api/v2/actions/NOTION_CREATE_NOTION_PAGE/execute" \
-H "X-API-Key: ak_Jf9drjMKYj65KMZMn_K9" \
-H "Content-Type: application/json" \
-d '{"connectedAccountId":"68d359a9-bdfa-43fe-a71e-4006a5f31419","input":{"title":"Title"}}'
---
GMAIL
3 Gmail accounts connected:
[email protected]→ee2b5a69-f814-4be0-8d6f-b4f25c9913d2[email protected]→c23afb0f-c86f-4e4d-8014-d47483e2e396[email protected]→d8e56054-8693-4e01-98bd-269ff2abba03
Use the appropriate connectedAccountId depending on which email the user wants. Default to [email protected] if not specified.
Send Email:
curl -X POST "https://backend.composio.dev/api/v2/actions/GMAIL_SEND_EMAIL/execute" \
-H "X-API-Key: ak_Jf9drjMKYj65KMZMn_K9" \
-H "Content-Type: application/json" \
-d '{"connectedAccountId":"c23afb0f-c86f-4e4d-8014-d47483e2e396","input":{"recipient_email":"[email protected]","subject":"Subject","message_body":"Body"}}'
Get Profile:
curl -X POST "https://backend.composio.dev/api/v2/actions/GMAIL_GET_PROFILE/execute" \
-H "X-API-Key: ak_Jf9drjMKYj65KMZMn_K9" \
-H "Content-Type: application/json" \
-d '{"connectedAccountId":"c23afb0f-c86f-4e4d-8014-d47483e2e396","input":{}}'
Fetch Emails:
curl -X POST "https://backend.composio.dev/api/v2/actions/GMAIL_FETCH_EMAILS/execute" \
-H "X-API-Key: ak_Jf9drjMKYj65KMZMn_K9" \
-H "Content-Type: application/json" \
-d '{"connectedAccountId":"c23afb0f-c86f-4e4d-8014-d47483e2e396","input":{"max_results":10}}'
---
Post Tweet:
curl -X POST "https://backend.composio.dev/api/v2/actions/TWITTER_CREATION_OF_A_POST/execute" \
-H "X-API-Key: ak_Jf9drjMKYj65KMZMn_K9" \
-H "Content-Type: application/json" \
-d '{"connectedAccountId":"7f8014ac-1095-4754-a2f5-08590a6107fd","input":{"text":"Tweet text"}}'
Get My Profile:
curl -X POST "https://backend.composio.dev/api/v2/actions/TWITTER_USER_LOOKUP_ME/execute" \
-H "X-API-Key: ak_Jf9drjMKYj65KMZMn_K9" \
-H "Content-Type: application/json" \
-d '{"connectedAccountId":"7f8014ac-1095-4754-a2f5-08590a6107fd","input":{}}'
---
DISCORD
Send Message:
curl -X POST "https://backend.composio.dev/api/v2/actions/DISCORD_SEND_MESSAGE_IN_CHANNEL/execute" \
-H "X-API-Key: ak_Jf9drjMKYj65KMZMn_K9" \
-H "Content-Type: application/json" \
-d '{"connectedAccountId":"f0043e24-6f7c-4a97-8cf1-1558b00a9598","input":{"channel_id":"CHANNEL_ID","content":"Message"}}'
List Guilds:
curl -X POST "https://backend.composio.dev/api/v2/actions/DISCORD_LIST_GUILDS/execute" \
-H "X-API-Key: ak_Jf9drjMKYj65KMZMn_K9" \
-H "Content-Type: application/json" \
-d '{"connectedAccountId":"f0043e24-6f7c-4a97-8cf1-1558b00a9598","input":{}}'
---
GOOGLE CALENDAR
Create Event:
curl -X POST "https://backend.composio.dev/api/v2/actions/GOOGLECALENDAR_CREATE_EVENT/execute" \
-H "X-API-Key: ak_Jf9drjMKYj65KMZMn_K9" \
-H "Content-Type: application/json" \
-d '{"connectedAccountId":"0d8b48dc-624f-45bb-b4e0-60f4958d9051","input":{"summary":"Meeting","start_datetime":"2026-02-06T10:00:00","end_datetime":"2026-02-06T11:00:00"}}'
List Calendars:
curl -X POST "https://backend.composio.dev/api/v2/actions/GOOGLECALENDAR_LIST_CALENDARS/execute" \
-H "X-API-Key: ak_Jf9drjMKYj65KMZMn_K9" \
-H "Content-Type: application/json" \
-d '{"connectedAccountId":"0d8b48dc-624f-45bb-b4e0-60f4958d9051","input":{}}'
---
GOOGLE DRIVE
List Files:
curl -X POST "https://backend.composio.dev/api/v2/actions/GOOGLEDRIVE_LIST_FILES/execute" \
-H "X-API-Key: ak_Jf9drjMKYj65KMZMn_K9" \
-H "Content-Type: application/json" \
-d '{"connectedAccountId":"d4278058-e4ec-4afd-b05c-e395405160d5","input":{}}'
Find File:
curl -X POST "https://backend.composio.dev/api/v2/actions/GOOGLEDRIVE_FIND_FILE/execute" \
-H "X-API-Key: ak_Jf9drjMKYj65KMZMn_K9" \
-H "Content-Type: application/json" \
-d '{"connectedAccountId":"d4278058-e4ec-4afd-b05c-e395405160d5","input":{"query":"filename"}}'
---
IMPORTANT RULES
1. ALWAYS confirm with user before:
- Sending emails
- Posting tweets
- Sending Discord messages
- Creating calendar events
2. Use the exact connectedAccountId for each service
3. All accounts are verified ACTIVE and working
Reviews
Write a Review
- No reviews yet. Be the first to review!
Get Weekly AI Skills
Join 500+ one-person companies receiving curated AI tools every week.
Reviews
Write a Review
- No reviews yet. Be the first to review!
Get Weekly AI Skills
Join 500+ one-person companies receiving curated AI tools every week.
Comments & Discussion
Add a comment