Developer docs

Radar integration

Radar is a full-stack location infrastructure platform offering SDKs and APIs…

Updated June 2026 37 actions available

Provider
radar
Category
Other
Setup
User-supplied API key
Actions
37 available

Quick start

Call Radar from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Radar'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(
  "RADAR_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 Radar 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

37 actions exposed via the Radar integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 37 actions
  • RADAR_GET_GEOFENCE
  • RADAR_GET_PLACES_SETTINGS
  • RADAR_GET_ROUTE_DIRECTIONS
  • RADAR_GET_ROUTE_MATRIX
  • RADAR_GET_TRIP
  • RADAR_GET_USER
  • RADAR_GET_USERS_IN_GEOFENCE
  • RADAR_IP_GEOCODE
  • RADAR_LIST_EVENTS
  • RADAR_LIST_GEOFENCES
  • RADAR_LIST_TRIPS
  • RADAR_LIST_USERS
  • RADAR_REVERSE_GEOCODE
  • RADAR_ROUTE_DISTANCE
  • RADAR_SEARCH_GEOFENCES_NEAR_LOCATION
  • RADAR_SEARCH_PLACES_NEAR_LOCATION
  • RADAR_SEARCH_USERS_NEAR_LOCATION
  • RADAR_TRACK_LOCATION_UPDATE
  • RADAR_UPDATE_PLACES_SETTINGS
  • RADAR_UPDATE_TRIP
  • RADAR_UPDATE_TRIP_BY_ID
  • RADAR_UPSERT_BEACON_BY_ID
  • RADAR_UPSERT_BEACON_BY_TAG
  • RADAR_UPSERT_GEOFENCE
  • RADAR_UPSERT_GEOFENCE_BY_ID

Build with Radar

Open OverSkill, describe what you want to build, and reference Radar in your prompt — the AI will wire up the integration automatically.