<!--
{
  "availability" : [
    "Search Ads: 5.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "Apple_Ads",
  "identifier" : "/documentation/apple_ads/Find-Targeting-Keywords-in-a-Campaign",
  "metadataVersion" : "0.1.0",
  "role" : "Web Service Endpoint",
  "symbol" : {
    "kind" : "Web Service Endpoint",
    "modules" : [
      "Apple Ads"
    ],
    "preciseIdentifier" : "rest:apple_ads:post:v5-campaigns-{}-adgroups-targetingkeywords-find"
  },
  "title" : "Find Targeting Keywords in a Campaign"
}
-->

# Find Targeting Keywords in a Campaign

Fetches targeting keywords in a campaign’s ad groups.

## Discussion

Use this endpoint to find targeting keywords in different ad groups within the same campaign. Use the associated `campaignId` in the URI. Find calls use [`Selector`](/documentation/apple_ads/Selector) [`Condition`](/documentation/apple_ads/Condition) operators to narrow results. If you don’t specify any selector conditions in the payload, the API returns all keywords across all ad groups of the campaign. For more information about available selection condition operators to use, see the [`Keyword`](/documentation/apple_ads/Keyword) object.

### Payload example: Find targeting keywords in a campaign

**Request:**

```
POST https://api.searchads.apple.com/api/v5/campaigns/{campaignId}/adgroups/targetingkeywords/find

{
  "pagination": {
    "offset": 0,
    "limit": 100
  },
  "orderBy": [
    {
      "field": "id",
      "sortOrder": "ASCENDING"
    }
  ],
  "conditions": [
    {
      "field": "deleted",
      "operator": "EQUALS",
      "values": [
        "false"
      ]
    }
  ]
}
```

**Response:**

```json
{
  "data": [
    {
      "id": 542370642,
      "adGroupId": 427916203,
      "text": "targeting keyword example 1",
      "status": "PAUSED",
      "matchType": "BROAD",
      "bidAmount": {
        "amount": "100",
        "currency": "USD"
      },
      "modificationTime": "2024-04-08T21:03:02.216",
      "deleted": false
    },
    {
      "id": 542370642,
      "adGroupId": 427916203,
      "text": "targeting keyword example 2",
      "status": "ACTIVE",
      "matchType": "EXACT",
      "bidAmount": {
        "amount": "100",
        "currency": "USD"
      },
      "modificationTime": "2024-04-08T17:53:10.899",
      "deleted": false
    }
  ],
  "pagination": {
    "totalResults": 2,
    "startIndex": 1,
    "itemsPerPage": 10
  }
}
```

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)