<!--
{
  "availability" : [
    "Apple Ads Platform API: 1.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "Apple-Ads-Platform-API",
  "identifier" : "/documentation/Apple-Ads-Platform-API/Filter",
  "metadataVersion" : "0.1.0",
  "role" : "Object",
  "symbol" : {
    "kind" : "Object",
    "modules" : [
      "Apple Ads Platform API"
    ],
    "preciseIdentifier" : "data:apple-ads-platform-api:Filter"
  },
  "title" : "Filter"
}
-->

# Filter

Filter condition for reporting requests.

```
object Filter
```

## Discussion

The `Filter` specifies a single field-level filter condition for a reporting request. The `field` name must match a filterable field on the target entity (for example, `localSpend`, `impressions`, `campaignId`). The `operator` determines the comparison type, and `value` supplies the comparison operand.

You can include multiple `Filter` objects in the `filters` array of a `AppsReportingRequest` or `BrandsReportingRequest` to narrow results by several criteria simultaneously. Supported operators vary by endpoint and field type: numeric fields support range operators like `GREATER_THAN` and `BETWEEN`. String fields support `EQUALS`, `IN`, and pattern operators like `STARTS_WITH`.

Endpoints that accept a `Filter` are: [`Campaigns Report`](/documentation/Apple-Ads-Platform-API/Get-app-campaign-reports), [`Ad Groups Report`](/documentation/Apple-Ads-Platform-API/Get-app-ad-group-reports), [`Ads Report`](/documentation/Apple-Ads-Platform-API/Get-app-ad-reports), [`Keywords Report`](/documentation/Apple-Ads-Platform-API/Get-app-keyword-reports), [`Search Terms Report`](/documentation/Apple-Ads-Platform-API/Get-app-search-term-reports), [`Campaigns Report (Brands)`](/documentation/Apple-Ads-Platform-API/Get-brand-campaign-reports), [`Ad Groups Report (Brands)`](/documentation/Apple-Ads-Platform-API/Get-brand-ad-group-reports), [`Ads Report (Brands)`](/documentation/Apple-Ads-Platform-API/Get-brand-ad-reports), [`Keywords Report (Brands)`](/documentation/Apple-Ads-Platform-API/Get-brand-keyword-reports), [`Search Terms Report (Brands)`](/documentation/Apple-Ads-Platform-API/Get-brand-search-term-reports), [`Impression Share Query`](/documentation/Apple-Ads-Platform-API/Query-app-impression-share-data), and [`Search Term Popularity Query`](/documentation/Apple-Ads-Platform-API/Query-app-search-term-popularity-data).

### Example

```json
{
  "field": "localSpend",
  "operator": "GREATER_THAN",
  "value": [
    "100.00"
  ]
}
```

## Topics

### Dictionaries

[`object Filter.Value`](/documentation/Apple-Ads-Platform-API/Filter/Value-data.dictionary)

The comparison operand supplied for the filter condition.

---

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)