---
title: NegativeKeywordQueryResponse
framework: Apple Ads Platform API
role: symbol
role_heading: Object
platforms: [apple ads platform api 1.0+]
path: apple-ads-platform-api/negativekeywordqueryresponse
---

# NegativeKeywordQueryResponse

The response object for a negative keyword query, containing matched results and pagination metadata.

## Declaration

```data
object NegativeKeywordQueryResponse
```

## Properties

result: Array of matching NegativeKeyword objects. Read-only. pagination: Pagination metadata for the query result, supporting offset-based navigation through large result sets. See QueryPaginationResult. Read-only. error: Error details if the request failed. See Error. Read-only.

## Discussion

Discussion The NegativeKeywordQueryResponse object is returned by the negative keyword query endpoint and contains the filtered, sorted, and paginated set of NegativeKeyword objects matching the request. To scope results to a specific campaign or ad group, filter by status, or retrieve by ID, use the QueryRequest body with filters, sorting, and pagination. Example {   "result": [     {       "id": 777888999,       "adAccountId": 123456789,       "campaignId": 444555666,       "text": "free app",       "matchType": "BROAD",       "status": "ENABLED",       "deleted": false,       "creationTime": "2025-01-10T08:00:00.000",       "modificationTime": "2025-01-10T08:00:00.000"     },     {       "id": 777888997,       "adAccountId": 123456789,       "campaignId": 444555666,       "text": "free trial",       "matchType": "EXACT",       "status": "ENABLED",       "deleted": false,       "creationTime": "2025-01-09T10:00:00.000",       "modificationTime": "2025-01-09T10:00:00.000"     }   ],   "pagination": {     "totalCount": 2,     "offset": 0,     "pageSize": 20   } }

## See Also

- [NegativeKeyword](apple-ads-platform-api/negativekeyword.md)
- [NegativeKeywordCreate](apple-ads-platform-api/negativekeywordcreate.md)
- [NegativeKeywordUpdate](apple-ads-platform-api/negativekeywordupdate.md)
- [NegativeKeywordResponse](apple-ads-platform-api/negativekeywordresponse.md)
