Developer docs

Reddit Ads integration

Reddit Ads API for managing advertising campaigns, conversions, and account…

Updated June 2026 83 actions available

Provider
reddit_ads
Category
Marketing
Setup
One-click OAuth (we host the OAuth app)
Actions
83 available

Quick start

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

OverSkill hosts the OAuth application for Reddit Ads. End-users click Connect on the integration card in your app, complete the OAuth flow with Reddit Ads, and OverSkill stores the access token scoped to their account. No client_id / client_secret configuration needed on your side.

Supported auth schemes: OAUTH2.

Available actions

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

Show all 83 actions
  • REDDIT_ADS_DELETE_PRODUCT_CATALOG
  • REDDIT_ADS_DELETE_PRODUCT_FEED
  • REDDIT_ADS_DELETE_PRODUCTS
  • REDDIT_ADS_DELETE_PRODUCT_SET
  • REDDIT_ADS_DO_GEOLOCATION_VALIDATIONS
  • REDDIT_ADS_DO_KEYWORD_VALIDATIONS
  • REDDIT_ADS_GENERATE_INSPIRATION_CREATIVE_SUMMARY
  • REDDIT_ADS_GET_AD_ACCOUNT
  • REDDIT_ADS_GET_AD_ACCOUNT_HISTORY
  • REDDIT_ADS_GET_AD_GROUP
  • REDDIT_ADS_GET_APP_LAST_FIRED_AT
  • REDDIT_ADS_GET_A_REPORT
  • REDDIT_ADS_GET_BUSINESS
  • REDDIT_ADS_GET_CAMPAIGN
  • REDDIT_ADS_GET_CHANNEL_PLANNING_REACH
  • REDDIT_ADS_GET_CHILD_FUNDING_INSTRUMENTS
  • REDDIT_ADS_GET_CUSTOM_AUDIENCE
  • REDDIT_ADS_GET_LEAD_GEN_FORM
  • REDDIT_ADS_GET_ME
  • REDDIT_ADS_GET_PIXEL_LAST_FIRED_AT
  • REDDIT_ADS_GET_POST
  • REDDIT_ADS_GET_PRODUCT_CATALOG
  • REDDIT_ADS_GET_PRODUCT_FEED
  • REDDIT_ADS_GET_PRODUCT_SET
  • REDDIT_ADS_GET_PROFILE
  • REDDIT_ADS_GET_SAVED_AUDIENCE
  • REDDIT_ADS_GET_SK_AD_NETWORK_AVAILABILITY
  • REDDIT_ADS_GET_STRUCTURED_POST
  • REDDIT_ADS_LIST3RD_PARTY_AUDIENCES
  • REDDIT_ADS_LIST_AD_ACCOUNTS_BY_BUSINESS
  • REDDIT_ADS_LIST_AD_GROUPS
  • REDDIT_ADS_LIST_ADS
  • REDDIT_ADS_LIST_CAMPAIGNS
  • REDDIT_ADS_LIST_CARRIERS
  • REDDIT_ADS_LIST_CATALOG_IMPORTS
  • REDDIT_ADS_LIST_COMMUNITIES
  • REDDIT_ADS_LIST_COMMUNITIES_SUGGESTIONS
  • REDDIT_ADS_LIST_DEVICES
  • REDDIT_ADS_LIST_FUNDING_INSTRUMENTS
  • REDDIT_ADS_LIST_GEOLOCATIONS
  • REDDIT_ADS_LIST_INDUSTRIES
  • REDDIT_ADS_LIST_INTERESTS
  • REDDIT_ADS_LIST_LEAD_GEN_FORMS
  • REDDIT_ADS_LIST_MY_BUSINESSES
  • REDDIT_ADS_LIST_PIXELS_BY_AD_ACCOUNT
  • REDDIT_ADS_LIST_PIXELS_BY_BUSINESS
  • REDDIT_ADS_LIST_POSTS
  • REDDIT_ADS_LIST_PRODUCT_CATALOGS
  • REDDIT_ADS_LIST_PRODUCT_FEEDS
  • REDDIT_ADS_LIST_PRODUCT_SETS
  • REDDIT_ADS_LIST_PRODUCTS_IN_PRODUCT_CATALOG
  • REDDIT_ADS_LIST_PRODUCTS_IN_PRODUCT_SET
  • REDDIT_ADS_LIST_PROFILES_BY_AD_ACCOUNT
  • REDDIT_ADS_LIST_PROFILES_BY_BUSINESS
  • REDDIT_ADS_LIST_SAVED_AUDIENCES
  • REDDIT_ADS_LIST_STRUCTURED_POSTS
  • REDDIT_ADS_LIST_TIME_ZONES
  • REDDIT_ADS_LIST_USER_CUSTOM_AUDIENCES
  • REDDIT_ADS_QUERY_AD_ACCOUNTS
  • REDDIT_ADS_QUERY_FUNDING_INSTRUMENTS_BY_BUSINESS
  • REDDIT_ADS_SEARCH_COMMUNITIES
  • REDDIT_ADS_UPDATE_AD_ACCOUNT
  • REDDIT_ADS_UPDATE_BUSINESS
  • REDDIT_ADS_UPDATE_CAMPAIGN
  • REDDIT_ADS_UPDATE_CUSTOM_AUDIENCE_USERS
  • REDDIT_ADS_UPDATE_POST
  • REDDIT_ADS_UPDATE_PRODUCT_CATALOG
  • REDDIT_ADS_UPDATE_PRODUCT_FEED
  • REDDIT_ADS_UPDATE_PRODUCT_SET
  • REDDIT_ADS_UPDATE_SAVED_AUDIENCE
  • REDDIT_ADS_UPDATE_STRUCTURED_POST

Build with Reddit Ads

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