Developer docs

Ahrefs integration

Ahrefs is an SEO and marketing platform offering site audits, keyword research,…

Updated June 2026 40 actions available

Provider
ahrefs
Category
Other
Setup
User-supplied API key
Actions
40 available

Quick start

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

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

Show all 40 actions
  • AHREFS_FETCH_SITE_EXPLORER_REFERRING_DOMAINS
  • AHREFS_FETCH_TOTAL_SEARCH_VOLUME_HISTORY
  • AHREFS_GET_SERP_OVERVIEW
  • AHREFS_GET_SITE_AUDIT_PROJECTS
  • AHREFS_GET_SITE_EXPLORER_COUNTRY_METRICS
  • AHREFS_GET_SITE_EXPLORER_LINKED_ANCHORS_EXTERNAL
  • AHREFS_GET_URL_RATING_HISTORY
  • AHREFS_LINKED_ANCHORS_EXPLORER
  • AHREFS_LIST_BEST_BY_EXTERNAL_LINKS
  • AHREFS_PAGES_BY_TRAFFIC_OVERVIEW
  • AHREFS_RETRIEVE_ANCHOR_DATA
  • AHREFS_RETRIEVE_BEST_BY_INTERNAL_LINKS
  • AHREFS_RETRIEVE_CRAWLER_IP_RANGES
  • AHREFS_RETRIEVE_ORGANIC_COMPETITORS
  • AHREFS_RETRIEVE_ORGANIC_KEYWORDS
  • AHREFS_RETRIEVE_OUTLINKS_STATS
  • AHREFS_RETRIEVE_PAID_PAGES_DATA
  • AHREFS_RETRIEVE_PUBLIC_CRAWLER_IPS
  • AHREFS_RETRIEVE_RELATED_TERMS
  • AHREFS_RETRIEVE_SITE_EXPLORER_KEYWORDS_HISTORY
  • AHREFS_RETRIEVE_SITE_EXPLORER_METRICS
  • AHREFS_RETRIEVE_SITE_EXPLORER_METRICS_HISTORY
  • AHREFS_RETRIEVE_SITE_EXPLORER_PAGES_HISTORY
  • AHREFS_RETRIEVE_SITE_EXPLORER_REFERRING_DOMAINS_HISTORY
  • AHREFS_RETRIEVE_SUBSCRIPTION_LIMITS_AND_USAGE
  • AHREFS_RETRIEVE_TOP_PAGES_FROM_SITE_EXPLORER
  • AHREFS_RETRIEVE_VOLUME_HISTORY
  • AHREFS_SEARCH_SUGGESTIONS_EXPLORER

Build with Ahrefs

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