Ipinfo.io integration
IPinfo.io provides a comprehensive API for IP address geolocation and related…
- Provider
- ipinfo_io
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 27 available
Quick start
Call Ipinfo.io from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Ipinfo.io'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(
"IPINFO_IO_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 Ipinfo.io 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
27 actions exposed via the
Ipinfo.io integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
IPINFO_IO_BATCH_LITE_LOOKUP -
IPINFO_IO_BATCH_LOOKUP -
IPINFO_IO_GET_ABUSE_CONTACT -
IPINFO_IO_GET_CARRIER_INFO -
IPINFO_IO_GET_CITY_BY_IP -
IPINFO_IO_GET_COMPANY_INFO -
IPINFO_IO_GET_CORE_FIELD_BY_ME -
IPINFO_IO_GET_COUNTRY_BY_IP -
IPINFO_IO_GET_CURRENT_IP -
IPINFO_IO_GET_CURRENT_IP_INFO -
IPINFO_IO_GET_CURRENT_LOC -
IPINFO_IO_GET_CURRENT_REGION
Show all 27 actions
-
IPINFO_IO_GET_GEO_BY_IP -
IPINFO_IO_GET_HOSTNAME_BY_IP -
IPINFO_IO_GET_IP_BY_IP -
IPINFO_IO_GET_IP_INFO -
IPINFO_IO_GET_IP_INFO_BY_IP -
IPINFO_IO_GET_LITE_FIELD_BY_IP -
IPINFO_IO_GET_LOCATION_BY_IP -
IPINFO_IO_GET_ORG_BY_IP -
IPINFO_IO_GET_PLUS_FIELD_BY_ME -
IPINFO_IO_GET_POSTAL_BY_IP -
IPINFO_IO_GET_PRIVACY_DETAILS -
IPINFO_IO_GET_REGION_BY_IP -
IPINFO_IO_GET_TIMEZONE_BY_IP -
IPINFO_IO_GET_TOKEN_INFO -
IPINFO_IO_MAP_IPS
Build with Ipinfo.io
Open OverSkill, describe what you want to build, and reference Ipinfo.io in your prompt — the AI will wire up the integration automatically.