Adyntel integration
Adyntel provides an API to retrieve LinkedIn ads for a given company using the…
- Provider
- adyntel
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 8 available
Quick start
Call Adyntel from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Adyntel'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(
"ADYNTEL_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 Adyntel 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
8 actions exposed via the
Adyntel integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
ADYNTEL_GET_GOOGLE_ADS_BY_COMPANY -
ADYNTEL_GET_GOOGLE_SHOPPING_SEARCH_STATUS -
ADYNTEL_GET_LINKED_IN_ADS_BY_COMPANY -
ADYNTEL_GET_META_ADS_BY_COMPANY_OR_PAGE -
ADYNTEL_GET_PAID_VS_ORGANIC_KEYWORDS -
ADYNTEL_META_AD_SEARCH -
ADYNTEL_SEARCH_TIK_TOK_ADS_BY_KEYWORD -
ADYNTEL_START_GOOGLE_SHOPPING_SEARCH
Build with Adyntel
Open OverSkill, describe what you want to build, and reference Adyntel in your prompt — the AI will wire up the integration automatically.