Spoki integration
Spoki is an Italian platform that integrates WhatsApp's official APIs to…
- Provider
- spoki
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 57 available
Quick start
Call Spoki from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Spoki'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(
"SPOKI_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 Spoki 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
57 actions exposed via the
Spoki integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
SPOKI_ADD_CONTACT_OPERATOR -
SPOKI_ADD_SERVICE_USER -
SPOKI_CHECK_ROLE_PRIVATE_KEY -
SPOKI_CLONE_TEMPLATE -
SPOKI_CREATE_ACCOUNT_ONBOARDING_LINK -
SPOKI_CREATE_CUSTOM_FIELD -
SPOKI_CREATE_LIST -
SPOKI_CREATE_MEDIA -
SPOKI_CREATE_OR_UPDATE_CONTACT -
SPOKI_CREATE_TEMPLATE -
SPOKI_CREATE_TICKET -
SPOKI_DELETE_CONTACT
Show all 57 actions
-
SPOKI_DELETE_CUSTOM_FIELD -
SPOKI_DELETE_LIST -
SPOKI_DELETE_MEDIA -
SPOKI_DELETE_ROLE -
SPOKI_DELETE_TEMPLATE -
SPOKI_DELETE_TICKET -
SPOKI_GENERATE_ROLE_PRIVATE_KEY -
SPOKI_GET_ACCOUNT_CURRENT_REPORT -
SPOKI_LIST_ACCOUNTS -
SPOKI_LIST_AGENCIES -
SPOKI_LIST_AUTOMATIONS -
SPOKI_LIST_CAMPAIGNS -
SPOKI_LIST_CONTACTS -
SPOKI_LIST_CUSTOM_FIELDS -
SPOKI_LIST_LISTS -
SPOKI_LIST_MEDIA -
SPOKI_LIST_PARTNERS -
SPOKI_LIST_REPORTS -
SPOKI_LIST_ROLES -
SPOKI_LIST_TAGS -
SPOKI_LIST_TEMPLATES -
SPOKI_LIST_TICKETS -
SPOKI_REMOVE_ALL_LIST_CONTACTS -
SPOKI_REMOVE_CONTACT_OPERATOR -
SPOKI_REMOVE_LIST_CONTACTS -
SPOKI_RESEND_INVITATION -
SPOKI_RETRIEVE_ACCOUNT -
SPOKI_RETRIEVE_AUTOMATION -
SPOKI_RETRIEVE_CONTACT -
SPOKI_RETRIEVE_CUSTOM_FIELD -
SPOKI_RETRIEVE_LIST -
SPOKI_RETRIEVE_MEDIA -
SPOKI_RETRIEVE_ROLE -
SPOKI_RETRIEVE_TAG -
SPOKI_RETRIEVE_TEMPLATE -
SPOKI_REVERT_TEMPLATE_TO_DRAFT -
SPOKI_SYNC_CONTACTS_BULK -
SPOKI_SYNC_LIST_CONTACTS -
SPOKI_UPDATE_CAMPAIGN -
SPOKI_UPDATE_CONTACT -
SPOKI_UPDATE_CUSTOM_FIELD -
SPOKI_UPDATE_INVITATION_ROLE -
SPOKI_UPDATE_MEDIA -
SPOKI_UPDATE_ROLE -
SPOKI_UPDATE_TEMPLATE
Build with Spoki
Open OverSkill, describe what you want to build, and reference Spoki in your prompt — the AI will wire up the integration automatically.