Skip to main content
GET
/
ad_groups
List Ad Groups
curl --request GET \
  --url https://{defaultHost}/ad_groups \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "click_through_rate": 123,
      "clicks": 123,
      "cost_per_click": 123,
      "cost_per_lead": 123,
      "cost_per_mille": 123,
      "cost_per_purchase": 123,
      "frequency": 123,
      "impressions": 123,
      "leads": 123,
      "purchase_value": 123,
      "purchases": 123,
      "reach": 123,
      "return_on_ad_spend": 123,
      "spend": 123,
      "spend_currency": "<string>",
      "unique_click_through_rate": 123,
      "unique_clicks": 123,
      "id": "<string>",
      "title": "<string>",
      "status": "active",
      "optimization_goal": "<string>",
      "conversion_location": "website",
      "budget_amount": 123,
      "budget_type": "daily",
      "minimum_daily_spend": 123,
      "bid_type": "minimum_cost",
      "desired_cost_per_result": 123,
      "starts_at": "<string>",
      "ends_at": "<string>",
      "regions": {},
      "audience": {},
      "devices": {},
      "frequency_cap": {},
      "placements": [
        {}
      ],
      "ad_campaign": {},
      "created_at": "<string>",
      "updated_at": "<string>",
      "issues": [
        {
          "id": "<string>",
          "category": "policy_rejection",
          "resource_id": "<string>",
          "resource_type": "ad_campaign"
        }
      ]
    }
  ],
  "page_info": {}
}

Authorizations

Authorization
string
header
required

An account API key, account scoped JWT, app API key, or user OAuth token.

Headers

Api-Version-Date
string<date>

Pins the request to a dated API version. When omitted, the request uses the original (2025-01-01) request/response shapes, so existing unversioned callers are never broken. Generated SDKs always send the latest version they were built against. An unrecognized value is rejected with a 400. The schemas documented here always describe the latest version.

Example:

"2026-06-20"

Query Parameters

account_id
string

Account whose ad groups to list. Defaults to the authenticated account.

ad_campaign_id
string

Filter to ad groups in this campaign.

status
string

Filter to a status (active, paused, in_review, rejected).

order
enum<string>

The field to sort by. Defaults to created_at.

Available options:
created_at,
updated_at
direction
enum<string>

The sort direction. Defaults to desc.

Available options:
asc,
desc

Response

200 - application/json

ad groups listed

data
object[]
page_info
object