Vapi integration
Vapi is a voice AI platform that enables developers to build, test, and deploy…
- Provider
- vapi
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 38 available
Quick start
Call Vapi from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Vapi'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(
"VAPI_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 Vapi 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
38 actions exposed via the
Vapi integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
VAPI_ASSISTANT_CONTROLLER_UPDATE -
VAPI_CALL_CONTROLLER_FIND_ALL -
VAPI_CHAT_CONTROLLER_DELETE_CHAT -
VAPI_CHAT_CONTROLLER_GET_CHAT -
VAPI_CREATE_ANALYTICS_QUERY -
VAPI_CREATE_ASSISTANT -
VAPI_CREATE_EVAL -
VAPI_CREATE_OPEN_AI_CHAT -
VAPI_CREATE_POLICY -
VAPI_CREATE_PROVIDER_RESOURCE -
VAPI_CREATE_SCORECARD -
VAPI_DELETE_CALL
Show all 38 actions
-
VAPI_DELETE_EVAL -
VAPI_DELETE_PHONE_NUMBER -
VAPI_EVAL_CONTROLLER_GET -
VAPI_EVAL_CONTROLLER_REMOVE_RUN -
VAPI_EVAL_CONTROLLER_UPDATE -
VAPI_GET_ASSISTANT -
VAPI_GET_CALL -
VAPI_GET_FILE -
VAPI_GET_MONITORING -
VAPI_GET_STRUCTURED_OUTPUTS -
VAPI_INSIGHT_CONTROLLER_FIND_ALL -
VAPI_LIST_ASSISTANTS -
VAPI_LIST_CHATS -
VAPI_LIST_EVALS -
VAPI_LIST_PHONE_NUMBERS -
VAPI_LIST_PROVIDER_RESOURCES -
VAPI_PATCH_INSIGHT_INSIGHT -
VAPI_PHONE_NUMBER_CONTROLLER_CREATE -
VAPI_SCORECARD_CONTROLLER_GET_PAGINATED -
VAPI_SESSION_CONTROLLER_CREATE -
VAPI_SESSION_CONTROLLER_FIND_ALL_PAGINATED -
VAPI_TOOL_CONTROLLER_FIND_ONE -
VAPI_TOOL_CONTROLLER_TEST_CODE_EXECUTION -
VAPI_TOOL_CONTROLLER_UPDATE -
VAPI_UPDATE_PHONE_NUMBER -
VAPI_UPLOAD_FILE
Build with Vapi
Open OverSkill, describe what you want to build, and reference Vapi in your prompt — the AI will wire up the integration automatically.