Skip to main content
GET
/
ads
List Ads
curl --request GET \
  --url https://{defaultHost}/ads \
  --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",
      "primary_texts": [
        "<string>"
      ],
      "headlines": [
        "<string>"
      ],
      "descriptions": [
        "<string>"
      ],
      "call_to_action": "learn_more",
      "url": "<string>",
      "url_parameters": {},
      "ad_group": {},
      "ad_campaign": {},
      "creatives": [
        {}
      ],
      "social_accounts": [
        {}
      ],
      "created_at": "<string>",
      "updated_at": "<string>",
      "issues": [
        {
          "id": "<string>",
          "category": "policy_rejection",
          "resource_id": "<string>",
          "resource_type": "ad_campaign"
        }
      ]
    }
  ],
  "page_info": {
    "has_next_page": true,
    "end_cursor": "<string>",
    "has_previous_page": true,
    "start_cursor": "<string>"
  }
}

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

The account the ads belong to. Defaults to the account-scoped key's own account.

ad_campaign_id
string

Only return ads in this ad campaign.

ad_group_id
string

Only return ads in this ad group.

status
enum<string>

Only return ads with this status.

Available options:
active,
paused,
in_review,
rejected
query
string

Filter ads by a title or ID substring.

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
created_before
string

Only return ads created before this timestamp.

created_after
string

Only return ads created after this timestamp.

stats_from
string

Start of the stats window. Defaults to all-time.

stats_to
string

End of the stats window. Defaults to now.

first
integer
default:20

The number of ads to return.

Required range: x <= 100
after
string

Cursor to fetch the page after (from page_info.end_cursor).

last
integer

The number of ads to return from the end of the range.

Required range: x <= 100
before
string

Cursor to fetch the page before (from page_info.start_cursor).

Response

ads listed

data
object[]
required
page_info
object
required