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

# Find Ad Group Negative Keywords

Fetches negative keywords in a campaign’s ad groups.

## Discussion

Use this endpoint to find negative 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, the API returns all negative keywords across all ad groups of the campaign. See the [`NegativeKeyword`](/documentation/apple_ads/NegativeKeyword) object for details about [`Selector`](/documentation/apple_ads/Selector) `condition` operators per field.

### Payload example: Find ad group negative neywords

**Request:**

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

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

**Response:**

```json
{
  "data": [
    {
      "id": 542370642,
      "campaignId": 542370539,
      "adGroupId": 427916203,
      "text": "ad group negative keyword example 1",
      "status": "ACTIVE",
      "matchType": "BROAD",
      "modificationTime": "2024-04-08T17:49:30.393",
      "deleted": false
    },
    {
      "id": 542370643,
      "campaignId": 542370539,
      "adGroupId": 427916203,
      "text": "ad group negative keyword example 2",
      "status": "ACTIVE",
      "matchType": "EXACT",
      "modificationTime": "2024-04-08T17:49:30.399",
      "deleted": false
    },
    {
      "id": 542370644,
      "campaignId": 542370539,
      "adGroupId": 427916203,
      "text": "ad group negative keyword example 3",
      "status”: "ACTIVE",
      "matchType": "BROAD",
      "modificationTime": "2024-04-08T01:55:00.017",
      "deleted": false
    },
    {
      "id": 542370645,
      "campaignId": 542370539,
      "adGroupId": 427916203,
      "text": "ad group negative keyword example 4",
      "status": "ACTIVE",
      "matchType": "EXACT",
      "modificationTime": "2024-04-08T01:55:00.025",
      "deleted": false
    },
    {
      "id": 542370646,
      "campaignId": 542370539,
      "adGroupId": 427916203,
      "text": "ad group negative keyword example 5",
      "status": "ACTIVE",
      "matchType": "BROAD",
      "modificationTime": "2024-04-08T20:34:19.129",
      "deleted": false
    },
    {
      "id": 542370647,
      "campaignId": 542370539,
      "adGroupId": 427916203,
      "text": "ad group negative keyword example 6",
      "status": "ACTIVE",
      "matchType": "EXACT",
      "modificationTime": "2024-04-08T20:34:19.131",
      "deleted": false
    }
  ],
  "pagination": {
    "totalResults": 6,
    "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)