<!--
{
  "availability" : [
    "Search Ads: 5.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "Apple_Ads",
  "identifier" : "/documentation/apple_ads/Find-Campaign-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-{}-negativekeywords-find"
  },
  "title" : "Find Campaign Negative Keywords"
}
-->

# Find Campaign Negative Keywords

Fetches negative keywords for campaigns.

## Discussion

Use this endpoint to find campaign negative keywords. 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, all negative keywords in the campaign return in the response. See the [`NegativeKeyword`](/documentation/apple_ads/NegativeKeyword) object for details about selector [`Condition`](/documentation/apple_ads/Condition) operators per field.

### Payload example: Find campaign negative keywords

**Request:**

```
POST https://api.searchads.apple.com/api/v5/campaigns/{campaignId}/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": 542317095,
      "text": "Find campaign negative keywords example 1",
      "status": "ACTIVE",
      "matchType": "BROAD",
      "modificationTime": "2023-04-08T17:48:31.979",
      "deleted": false
    },
    {
      "id": 542370643,
      "campaignId": 542370539,
      "adGroupId": 542317095,
      "text": "Find campaign negative keywords example 2",
      "status": "ACTIVE",
      "matchType": "EXACT",
      "modificationTime": "2023-04-08T17:48:31.984",
      "deleted": false
    },
    {
      "id": 542370644,
      "campaignId": 542370539,
      "adGroupId": 542317095,
      "text": "Find campaign negative keywords example 3",
      "status": "ACTIVE",
      "matchType": "EXACT",
      "modificationTime": "2023-04-08T20:52:59.050",
      "deleted": false
    },
    {
      "id": 542370645,
      "campaignId": 542370539,
      "adGroupId": 542317095,
      "text": "Find campaign negative keywords example 4",
      "status": "ACTIVE",
      "matchType": "BROAD",
      "modificationTime": "2023-04-08T20:52:59.054",
      "deleted": false
    }
  ],
  "pagination": {
    "totalResults": 4,
    "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)