Cloudflare Api Key integration
Cloudflare provides a suite of services to enhance the security, performance,…
- Provider
- cloudflare_api_key
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 25 available
Quick start
Call Cloudflare Api Key from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Cloudflare Api Key'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(
"CLOUDFLARE_API_KEY_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 Cloudflare Api Key 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
25 actions exposed via the
Cloudflare Api Key integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
CLOUDFLARE_API_KEY_CREATE_DNS_RECORD -
CLOUDFLARE_API_KEY_CREATE_LOCKDOWN_RULE -
CLOUDFLARE_API_KEY_CREATE_RULE_IN_RULESET -
CLOUDFLARE_API_KEY_CREATE_RULESET -
CLOUDFLARE_API_KEY_DELETE_DNS_RECORD -
CLOUDFLARE_API_KEY_DELETE_DNSSEC -
CLOUDFLARE_API_KEY_DELETE_RULE_FROM_RULESET -
CLOUDFLARE_API_KEY_DELETE_RULESET -
CLOUDFLARE_API_KEY_DELETE_ZONE -
CLOUDFLARE_API_KEY_GET_CLOUDFLARE_IP_ADDRESSES -
CLOUDFLARE_API_KEY_GET_ENTRYPOINT_RULESET_VERSION -
CLOUDFLARE_API_KEY_GET_LOCKDOWN_RULE
Show all 25 actions
-
CLOUDFLARE_API_KEY_GET_REGIONAL_TIERED_CACHE -
CLOUDFLARE_API_KEY_GET_RULESET -
CLOUDFLARE_API_KEY_GET_ZONE_DETAILS -
CLOUDFLARE_API_KEY_LIST_DNS_RECORDS -
CLOUDFLARE_API_KEY_LIST_ZONES -
CLOUDFLARE_API_KEY_OVERWRITE_DNS_RECORD -
CLOUDFLARE_API_KEY_RERUN_ZONE_ACTIVATION_CHECK -
CLOUDFLARE_API_KEY_UPDATE_DNSSEC_STATUS -
CLOUDFLARE_API_KEY_UPDATE_LOCKDOWN_RULE -
CLOUDFLARE_API_KEY_UPDATE_RULE_IN_RULESET -
CLOUDFLARE_API_KEY_UPDATE_RULESET -
CLOUDFLARE_API_KEY_UPDATE_ZONE -
CLOUDFLARE_API_KEY_UPLOAD_FILE_TO_S3
Build with Cloudflare Api Key
Open OverSkill, describe what you want to build, and reference Cloudflare Api Key in your prompt — the AI will wire up the integration automatically.