Reddit Ads

Send conversion events to Reddit via the Conversions API for campaign attribution, audience measurement, and ad delivery optimisation.

Configuration

FieldTypeRequiredDescription
account_idstringYesYour Reddit Ads account ID. Found in Reddit Ads Manager under Account Settings.
pixel_idstringYesYour Reddit Pixel ID. Found in Reddit Ads Manager under Events Manager > Pixel Setup.
access_tokensecretYesReddit Ads API access token with conversions scope. Generate via the Reddit developer portal.

Quick Setup

  1. Navigate to Integrations in the sidebar.
  2. Open the Integration Library tab.
  3. Find Reddit Ads or filter by Advertising.
  4. Click Install, select a variant if available, and fill in the required fields.
  5. Click Install Integration to create the integration with a ready-to-use default configuration.

API Setup

curl -X POST http://localhost:8084/v1/admin/integration-catalog/reddit/install \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Reddit Ads",
    "variant": "default",
    "config": {
      "account_id": "t2_abc123",
      "pixel_id": "t2_pixel_abc123",
      "access_token": "eyJhbGciOi..."
    },
    "delivery_mode": "server_side"
  }'

Delivery

Events are delivered server-side from your Datafly Signal infrastructure directly to the Reddit Ads API. No client-side scripts are loaded for this integration.

Visit Reddit Ads documentation for full API documentation and credential setup instructions.