<!--
{
  "availability" : [
    "iOS: 8.0.0 -",
    "iPadOS: 8.0.0 -",
    "macCatalyst: 13.1.0 -",
    "macOS: 10.15.0 -",
    "tvOS: 10.0.0 -",
    "visionOS: 1.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "PhotoKit",
  "identifier" : "/documentation/Photos/PHAsset/fetchAssets(withBurstIdentifier:options:)",
  "metadataVersion" : "0.1.0",
  "role" : "Type Method",
  "symbol" : {
    "kind" : "Type Method",
    "modules" : [
      "Photos"
    ],
    "preciseIdentifier" : "c:objc(cs)PHAsset(cm)fetchAssetsWithBurstIdentifier:options:"
  },
  "title" : "fetchAssets(withBurstIdentifier:options:)"
}
-->

# fetchAssets(withBurstIdentifier:options:)

Retrieves assets with the specified burst photo sequence identifier.

```
class func fetchAssets(withBurstIdentifier burstIdentifier: String, options: PHFetchOptions?) -> PHFetchResult<PHAsset>
```

## Parameters

`burstIdentifier`

A burst identifier string, as provided by the [`burstIdentifier`](/documentation/Photos/PHAsset/burstIdentifier) property of an asset.

`options`

Options that specify a filter predicate and sort order for the fetched assets, or `nil` to use default options. For details, see [`PHFetchOptions`](/documentation/Photos/PHFetchOptions).

## Return Value

A fetch result that contains the requested [`PHAsset`](/documentation/Photos/PHAsset) objects, or an empty fetch result if no objects match the request.

## Discussion

A burst photo sequence, as seen in the Photos app, corresponds to a group of Photos assets that share the same [`burstIdentifier`](/documentation/Photos/PHAsset/burstIdentifier) string.

By default, the returned [`PHFetchResult`](/documentation/Photos/PHFetchResult) object contains only the representative asset and any user-picked photos from the burst sequence. To retrieve all photos in the burst sequence, provide a [`PHFetchOptions`](/documentation/Photos/PHFetchOptions) object containing a filter predicate.

---

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)