Neutrino integration
Neutrino API provides a suite of general-purpose APIs for various tasks,…
- Provider
- neutrino
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 24 available
Quick start
Call Neutrino from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Neutrino'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(
"NEUTRINO_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 Neutrino 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
24 actions exposed via the
Neutrino integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
NEUTRINO_ADD_WATERMARK_TO_IMAGE -
NEUTRINO_BAD_WORD_FILTER -
NEUTRINO_BIN_LOOKUP -
NEUTRINO_CHECK_IP_BLOCKLIST -
NEUTRINO_CONVERT -
NEUTRINO_EMAIL_VALIDATE -
NEUTRINO_EMAIL_VERIFY -
NEUTRINO_GEOCODE_ADDRESS -
NEUTRINO_GEOCODE_REVERSE -
NEUTRINO_HLR_LOOKUP -
NEUTRINO_HOST_REPUTATION -
NEUTRINO_HTML_CLEAN
Show all 24 actions
-
NEUTRINO_HTML_RENDER -
NEUTRINO_IMAGE_RESIZE -
NEUTRINO_IP_INFO -
NEUTRINO_IP_PROBE -
NEUTRINO_LOOKUP_DOMAIN -
NEUTRINO_PHONE_VALIDATE -
NEUTRINO_QR_CODE -
NEUTRINO_RUN_BROWSER_BOT -
NEUTRINO_SMS_VERIFY -
NEUTRINO_UA_LOOKUP -
NEUTRINO_URL_INFO -
NEUTRINO_VERIFY_SECURITY_CODE
Build with Neutrino
Open OverSkill, describe what you want to build, and reference Neutrino in your prompt — the AI will wire up the integration automatically.