Developer docs

Keyword integration

Keyword.com is a digital marketing platform that provides search engine ranking…

Updated June 2026 20 actions available

Provider
keyword
Category
Marketing
Setup
User-supplied API key
Actions
20 available

Quick start

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

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

Show all 20 actions
  • KEYWORD_GET_TOP_PAGES
  • KEYWORD_LIST_ACTIVE_PROJECTS
  • KEYWORD_LIST_ALERTS
  • KEYWORD_LIST_KEYWORDS
  • KEYWORD_LIST_PROJECT_REGIONS
  • KEYWORD_REFRESH_KEYWORDS
  • KEYWORD_RESTORE_PROJECT
  • KEYWORD_UPDATE_KEYWORDS

Build with Keyword

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