Icypeas integration
Icypeas is an email discovery and verification tool that allows users to find…
- Provider
- icypeas
- Category
- Setup
- User-supplied API key
- Actions
- 22 available
Quick start
Call Icypeas from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Icypeas'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(
"ICYPEAS_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 Icypeas 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
22 actions exposed via the
Icypeas integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
ICYPEAS_BULK_EMAIL_SEARCH -
ICYPEAS_BULK_FIND_PROFILE_URLS -
ICYPEAS_BULK_REVERSE_EMAIL_LOOKUP -
ICYPEAS_BULK_SCRAPE -
ICYPEAS_CHECK_PROGRESS -
ICYPEAS_COUNT_COMPANIES -
ICYPEAS_COUNT_PEOPLE -
ICYPEAS_DOMAIN_SCAN -
ICYPEAS_FETCH_BULK_SEARCH_INFO -
ICYPEAS_FETCH_SUBSCRIPTION_INFO -
ICYPEAS_FIND_COMPANIES -
ICYPEAS_FIND_COMPANY_URL
Show all 22 actions
-
ICYPEAS_FIND_LINKEDIN_PROFILE_BY_EMAIL -
ICYPEAS_FIND_PEOPLE -
ICYPEAS_FIND_PROFILE_URL -
ICYPEAS_FIND_SINGLE_EMAIL -
ICYPEAS_PARSE_BULK_SEARCH_STATISTICS -
ICYPEAS_RETRIEVE_SEARCH_RESULTS -
ICYPEAS_SCRAPE_COMPANY -
ICYPEAS_SCRAPE_PROFILE -
ICYPEAS_SETUP_NOTIFICATIONS -
ICYPEAS_VERIFY_EMAIL
Build with Icypeas
Open OverSkill, describe what you want to build, and reference Icypeas in your prompt — the AI will wire up the integration automatically.