Verifiedemail integration
VerifiedEmail offers real-time email verification and bulk email list cleaning…
- Provider
- verifiedemail
- Category
- Setup
- User-supplied API key
- Actions
- 9 available
Quick start
Call Verifiedemail from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Verifiedemail'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(
"VERIFIEDEMAIL_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 Verifiedemail 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
9 actions exposed via the
Verifiedemail integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
VERIFIEDEMAIL_CHECK_CREDITS -
VERIFIEDEMAIL_CHECK_FILE_STATUS -
VERIFIEDEMAIL_GET1_CLICK_USER_DATA -
VERIFIEDEMAIL_GET_ENTITLEMENTS -
VERIFIEDEMAIL_GET_SHARED_CREDENTIALS -
VERIFIEDEMAIL_LIST_DOWNLOADS -
VERIFIEDEMAIL_LIST_LISTS -
VERIFIEDEMAIL_POST1_CLICK_CREDENTIALS_UPDATE -
VERIFIEDEMAIL_VERIFY_EMAIL
Build with Verifiedemail
Open OverSkill, describe what you want to build, and reference Verifiedemail in your prompt — the AI will wire up the integration automatically.