Reddit Ads#
Connect Reddit Ads with OAuth using your app credentials plus an advertiser id. The source writes 6 fixed tables under titan.reddit_ads.
select
id,
name,
account_id
from titan.reddit_ads.campaigns
limit 10Connect Reddit Ads#
Open Apps, choose Connect app, and select Reddit Ads.
Enter OAuth using your app credentials plus an advertiser id.
Review the tables, then save the source.
Watch Sync history until the first run completes.
Credentials are stored as secrets. They never become lake columns or appear in query results.
Sync behavior#
Choose the initial history window during setup. Entity and metric tables remain scoped to the advertiser.
A new source syncs when you connect it and then follows its schedule. The default recurring interval is 4 hours. An interrupted run keeps its completed progress and retries safely.
Every lake table also has the system columns _synced_at and _deleted; the column reference below lists source columns only.
Table reference#
campaigns#
titan.reddit_ads.campaigns has 7 source columns.
Source field id.
Source field name.
Source field accountId.
Source field status.
Source field objective.
Source field createdAt.
Source field updatedAt.
ad_groups#
titan.reddit_ads.ad_groups has 7 source columns.
Source field id.
Source field campaignId.
Source field name.
Source field status.
Source field targetingCriteria.
Source field createdAt.
Source field updatedAt.
ads#
titan.reddit_ads.ads has 6 source columns.
Source field id.
Source field adGroupId.
Source field name.
Source field status.
Source field createdAt.
Source field updatedAt.
campaign_metrics#
titan.reddit_ads.campaign_metrics has 8 source columns.
Source field campaignId.
Source field date.
Source field impressions.
Source field clicks.
Source field spend.
Source field ecpm.
Source field cpc.
Source field ctr.
ad_group_metrics#
titan.reddit_ads.ad_group_metrics has 8 source columns.
Source field adGroupId.
Source field date.
Source field impressions.
Source field clicks.
Source field spend.
Source field ecpm.
Source field cpc.
Source field ctr.
ad_metrics#
titan.reddit_ads.ad_metrics has 8 source columns.
Source field adId.
Source field date.
Source field impressions.
Source field clicks.
Source field spend.
Source field ecpm.
Source field cpc.
Source field ctr.
Deletes and history#
Rows are merged by their source key. When the source can prove that a row was deleted, Supernova keeps the row and sets _deleted so queries can choose whether to include history. Filter current-state queries with where not _deleted.