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

# Find Creatives

Finds creatives within an organization.

## Discussion

Use this endpoint to find creatives using a [`Selector`](/documentation/apple_ads/Selector) [`Condition`](/documentation/apple_ads/Condition) to filter results. If you don’t specify selector conditions, all creatives return in the response. See [`Creative`](/documentation/apple_ads/Creative) for field descriptions and selector condition operators.

Values are case-sensitive strings. The `orderBy` selector supports the `Id` and `name` fields.

### Payload example: Find creatives

**Request:**

```
POST https://api.searchads.apple.com/api/v5/creatives/find

{
  "conditions": [
    {
      "field": "name",
      "operator": "CONTAINS",
      "values": [
        "Trip"
      ]
    }
  ]
}
```

**Response:**

```json
{
  "data": [
    {
      "id": 573408745,
      "orgId": 39872140,
      "adamId": 899247664,
      "name": "Trip Trek custom product page variation 1",
      "type": "CUSTOM_PRODUCT_PAGE",
      "state": "VALID",
      "stateReasons": [],
      "creationTime": "2024-10-09T20:07:19.506Z",
      "modificationTime": "2024-10-18T20:07:19.506Z",
      "productPageId": "76659d7a-d146-43d3-b6b8-b7a12f74bf6b"
    },
    {
      "id": 75606108,
      "orgId": 39879640,
      "adamId": 1004806037,
      "name": "Trip Trek Creative Set variation 2",
      "type": "CREATIVE_SET",
      "state": "INVALID",
      "stateReasons": [],
      "creationTime": "2024-03-04T02:44:14.775",
      "modificationTime": "2024-08-17T01:16:37.827",
      "languageCode": "en_US"
    }
  ],
  “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)