Developer docs

Recall.ai integration

Recall AI provides a unified API to integrate meeting bots and access…

Updated June 2026 63 actions available

Provider
recallai
Category
Other
Setup
User-supplied API key
Actions
63 available

Quick start

Call Recall.ai from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Recall.ai'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(
  "RECALLAI_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

End-users supply their own Recall.ai API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.

Available actions

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

Show all 63 actions
  • RECALLAI_DESTROY_GOOGLE_LOGIN
  • RECALLAI_DESTROY_GOOGLE_LOGIN_GROUP
  • RECALLAI_DESTROY_ZOOM_O_AUTH_APP
  • RECALLAI_DISCONNECT_CALENDAR_USER
  • RECALLAI_LIST_AUDIO_MIXED
  • RECALLAI_LIST_AUDIO_SEPARATE
  • RECALLAI_LIST_BOTS
  • RECALLAI_LIST_BOT_SCREENSHOTS
  • RECALLAI_LIST_CALENDAR_EVENTS
  • RECALLAI_LIST_CALENDAR_MEETINGS
  • RECALLAI_LIST_CALENDARS
  • RECALLAI_LIST_CALENDAR_USERS
  • RECALLAI_LIST_CHAT_MESSAGES
  • RECALLAI_LIST_GOOGLE_LOGIN_GROUPS
  • RECALLAI_LIST_GOOGLE_LOGINS
  • RECALLAI_LIST_MEETING_DIRECT_CONNECT
  • RECALLAI_LIST_MEETING_METADATA
  • RECALLAI_LIST_PARTICIPANT_EVENTS
  • RECALLAI_LIST_REALTIME_ENDPOINT
  • RECALLAI_LIST_RECORDING
  • RECALLAI_LIST_SDK_UPLOADS
  • RECALLAI_LIST_SLACK_TEAMS
  • RECALLAI_LIST_TRANSCRIPT
  • RECALLAI_LIST_VIDEO_MIXED
  • RECALLAI_LIST_VIDEO_SEPARATE
  • RECALLAI_LIST_ZOOM_MEETINGS_TO_CREDENTIALS
  • RECALLAI_LIST_ZOOM_OAUTH_APP_LOGS
  • RECALLAI_LIST_ZOOM_OAUTH_APPS
  • RECALLAI_LIST_ZOOM_OAUTH_CREDENTIAL_LOGS
  • RECALLAI_LIST_ZOOM_O_AUTH_CREDENTIALS
  • RECALLAI_REMOVE_BOT_FROM_CALL
  • RECALLAI_RETRIEVE_BILLING_USAGE
  • RECALLAI_RETRIEVE_BOT
  • RECALLAI_RETRIEVE_CALENDARS
  • RECALLAI_RETRIEVE_GOOGLE_LOGIN_GROUP
  • RECALLAI_RETRIEVE_MEETING_DIRECT_CONNECT
  • RECALLAI_RETRIEVE_RECORDING
  • RECALLAI_RETRIEVE_SDK_UPLOAD
  • RECALLAI_RETRIEVE_VIDEO_MIXED
  • RECALLAI_RETRIEVE_ZOOM_OAUTH_APP
  • RECALLAI_START_RECORDING
  • RECALLAI_STOP_RECORDING
  • RECALLAI_UPDATE_BOT
  • RECALLAI_UPDATE_CALENDAR
  • RECALLAI_UPDATE_CALENDAR_USER
  • RECALLAI_UPDATE_GOOGLE_LOGIN
  • RECALLAI_UPDATE_GOOGLE_LOGIN_GROUP
  • RECALLAI_UPDATE_GOOGLE_LOGIN_GROUPS
  • RECALLAI_UPDATE_RECORDING
  • RECALLAI_UPDATE_VIDEO_MIXED
  • RECALLAI_UPDATE_ZOOM_O_AUTH_APP

Build with Recall.ai

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