Bolna integration
Create conversational voice agents using Bolna AI to enhance interactions,…
- Provider
- bolna
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 35 available
Quick start
Call Bolna from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Bolna'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(
"BOLNA_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 Bolna 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
35 actions exposed via the
Bolna integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
BOLNA_ADD_PROVIDER -
BOLNA_COPY_AGENT -
BOLNA_CREATE_AGENT -
BOLNA_CREATE_BATCH -
BOLNA_CREATE_KNOWLEDGEBASE -
BOLNA_CREATE_TEMPLATE_AGENT -
BOLNA_DELETE_AGENT_BY_ID -
BOLNA_DELETE_BATCH_BY_ID -
BOLNA_DELETE_KNOWLEDGEBASE -
BOLNA_FETCH_ALL_BATCHES_BY_AGENT_ID -
BOLNA_GET_AGENT_V1 -
BOLNA_GET_ALL_AGENTS
Show all 35 actions
-
BOLNA_GET_EXECUTION_BY_ID -
BOLNA_GET_KNOWLEDGEBASE -
BOLNA_GET_USER_INFO -
BOLNA_IMPORT_AGENT -
BOLNA_LIST_AGENTS_PAGINATED -
BOLNA_LIST_KNOWLEDGEBASES -
BOLNA_LIST_PHONE_NUMBERS -
BOLNA_LIST_PROVIDERS -
BOLNA_LIST_VOICES -
BOLNA_MAKE_A_PHONE_CALL_FROM_AGENT -
BOLNA_PATCH_AGENT_V1 -
BOLNA_REMOVE_PROVIDER -
BOLNA_RETRIEVE_AGENT_BY_ID -
BOLNA_RETRIEVE_AGENT_EXECUTION_DETAILS -
BOLNA_RETRIEVE_AGENT_EXECUTION_STATUS -
BOLNA_RETRIEVE_BATCH_DETAILS_BY_ID -
BOLNA_RETRIEVE_BATCH_EXECUTION_LIST -
BOLNA_SCHEDULE_BATCH_BY_ID -
BOLNA_SEARCH_PHONE_NUMBERS -
BOLNA_SETUP_INBOUND_CALL_FOR_AGENT -
BOLNA_STOP_AGENT_CALLS -
BOLNA_STOP_BATCH_BY_ID -
BOLNA_UPDATE_AGENT
Build with Bolna
Open OverSkill, describe what you want to build, and reference Bolna in your prompt — the AI will wire up the integration automatically.