Developer docs

SerpApi integration

SerpApi provides a real-time API for structured search engine results, allowing…

Updated June 2026 48 actions available

Provider
serpapi
Category
Analytics
Setup
User-supplied API key
Actions
48 available

Quick start

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

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

Show all 48 actions
  • SERPAPI_GET_GOOGLE_HOTELS_AUTOCOMPLETE_SUGGESTIONS
  • SERPAPI_GET_GOOGLE_IMAGES_RELATED_CONTENT
  • SERPAPI_GET_GOOGLE_PATENT_DETAILS
  • SERPAPI_GET_SEARCH_ARCHIVE
  • SERPAPI_GOOGLE_DOMAINS_LIST
  • SERPAPI_GOOGLE_FORUMS_SEARCH
  • SERPAPI_GOOGLE_JOBS_SEARCH
  • SERPAPI_GOOGLE_LENS_SEARCH
  • SERPAPI_GOOGLE_LIGHT_SEARCH
  • SERPAPI_GOOGLE_MAPS_POSTS
  • SERPAPI_GOOGLE_MAPS_SEARCH
  • SERPAPI_GOOGLE_PLAY_PRODUCT
  • SERPAPI_GOOGLE_SCHOLAR_AUTHOR
  • SERPAPI_GOOGLE_SCHOLAR_CITE
  • SERPAPI_GOOGLE_VIDEOS_LIGHT
  • SERPAPI_HOTEL_SEARCH
  • SERPAPI_IMAGE_SEARCH
  • SERPAPI_NAVER_SEARCH
  • SERPAPI_NEWS_SEARCH
  • SERPAPI_OPEN_TABLE_REVIEWS
  • SERPAPI_PLAY_SEARCH
  • SERPAPI_SCHOLAR_SEARCH
  • SERPAPI_SEARCH
  • SERPAPI_SEARCH_APPLE_APP_STORE
  • SERPAPI_SEARCH_GOOGLE_IMAGES_LIGHT
  • SERPAPI_SEARCH_GOOGLE_LOCAL_SERVICES
  • SERPAPI_SEARCH_YELP
  • SERPAPI_SHOPPING_SEARCH
  • SERPAPI_TRENDS_SEARCH
  • SERPAPI_WALMART_PRODUCT_REVIEWS
  • SERPAPI_WALMART_SEARCH
  • SERPAPI_YAHOO_SEARCH
  • SERPAPI_YAHOO_VIDEOS
  • SERPAPI_YANDEX_IMAGES_SEARCH
  • SERPAPI_YANDEX_SEARCH
  • SERPAPI_YOU_TUBE_SEARCH

Build with SerpApi

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