Heyreach integration
HeyReach is a multichannel outreach platform designed to help businesses and…
- Provider
- heyreach
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 19 available
Quick start
Call Heyreach from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Heyreach'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(
"HEYREACH_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 Heyreach 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
19 actions exposed via the
Heyreach integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
HEYREACH_ADD_LEADS_TO_LIST_V2 -
HEYREACH_CHECK_API_KEY -
HEYREACH_CREATE_EMPTY_LIST -
HEYREACH_CREATE_TAGS -
HEYREACH_CREATE_WEBHOOK -
HEYREACH_DELETE_WEBHOOK -
HEYREACH_GET_ALL_CAMPAIGNS -
HEYREACH_GET_ALL_LEADS -
HEYREACH_GET_ALL_LINKEDIN_ACCOUNTS -
HEYREACH_GET_ALL_LISTS -
HEYREACH_GET_ALL_WEBHOOKS -
HEYREACH_GET_COMPANIES_FROM_LIST
Show all 19 actions
-
HEYREACH_GET_CONVERSATIONS_V2 -
HEYREACH_GET_LEAD -
HEYREACH_GET_LISTS_FOR_LEAD -
HEYREACH_GET_MY_NETWORK_FOR_SENDER -
HEYREACH_GET_OVERALL_STATS -
HEYREACH_GET_WEBHOOK_BY_ID -
HEYREACH_UPDATE_WEBHOOK
Build with Heyreach
Open OverSkill, describe what you want to build, and reference Heyreach in your prompt — the AI will wire up the integration automatically.