Developer docs

Ipinfo.io integration

IPinfo.io provides a comprehensive API for IP address geolocation and related…

Updated June 2026 27 actions available

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.

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.