Reddit · Example Payload

Reddit Ads Api Create Campaign Example

AdvertisingCommunitiesContentSocial MediaSocial News

Reddit Ads Api Create Campaign Example is an example object payload from Reddit, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://ads-api.reddit.com/api/v3/campaigns",
    "headers": {
      "Authorization": "bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...",
      "Content-Type": "application/json"
    },
    "body": {
      "account_id": "t2_abc123",
      "campaign_name": "Spring Product Launch 2026",
      "objective": "BRAND_AWARENESS",
      "total_budget_amount": 500000,
      "total_budget_currency": "USD",
      "start_date": "2026-05-10",
      "end_date": "2026-05-31",
      "status": "PAUSED"
    }
  },
  "response": {
    "status": 201,
    "body": {
      "data": {
        "id": "t2_campaign_xyz789",
        "account_id": "t2_abc123",
        "campaign_name": "Spring Product Launch 2026",
        "objective": "BRAND_AWARENESS",
        "total_budget_amount": 500000,
        "total_budget_currency": "USD",
        "start_date": "2026-05-10",
        "end_date": "2026-05-31",
        "status": "PAUSED",
        "created_at": "2026-05-02T10:00:00Z",
        "updated_at": "2026-05-02T10:00:00Z"
      }
    }
  }
}