> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# PFCatalogGetItemContainersAsync

> Search for a given item and return a set of bundles and stores containing the item. Up to 50 items can be returned at once. You can use continuation tokens.

Search for a given item and return a set of bundles and stores containing the item. Up to 50 items can be returned at once. You can use continuation tokens to paginate through results that return greater than the limit. This API is intended for tooling/automation scenarios and has a reduced RPS with Player Entities limited to 30 requests in 300 seconds and Title Entities limited to 100 requests in 10 seconds.

## Syntax

```cpp theme={null}
HRESULT PFCatalogGetItemContainersAsync(  
    PFEntityHandle entityHandle,  
    const PFCatalogGetItemContainersRequest* request,  
    XAsyncBlock* async  
)  
```

### Parameters

**`entityHandle`**   PFEntityHandle

PFEntityHandle to use for authentication.

**`request`**   [PFCatalogGetItemContainersRequest\*](/services/playfab/api-references/c/pfcatalogtypes/structs/pfcataloggetitemcontainersrequest)

Populated request object.

**`async`**   XAsyncBlock\*<br />*Inout*

XAsyncBlock for the async operation.

### Return value

Type: HRESULT

Result code for this API operation.

## Remarks

This API is available on all platforms. Given an item, return a set of bundles and stores containing the item. When the asynchronous task is complete, call [PFCatalogGetItemContainersGetResultSize](/services/playfab/api-references/c/pfcatalog/functions/pfcataloggetitemcontainersgetresultsize) and [PFCatalogGetItemContainersGetResult](/services/playfab/api-references/c/pfcatalog/functions/pfcataloggetitemcontainersgetresult) to get the result.

## Requirements

**Header:** PFCatalog.h

## See also

[PFCatalog members](/services/playfab/api-references/c/pfcatalog/pfcatalog_members)


## Related topics

- [PFCatalogGetItemContainersGetResult](/services/playfab/api-references/c/pfcatalog/functions/pfcataloggetitemcontainersgetresult.md)
- [Services C API overview - PFCatalog.h](/services/playfab/api-references/c/pfcatalog/pfcatalog_members.md)
- [PFCatalogGetItemContainersGetResultSize](/services/playfab/api-references/c/pfcatalog/functions/pfcataloggetitemcontainersgetresultsize.md)
- [PFCatalogGetItemContainersRequest](/services/playfab/api-references/c/pfcatalogtypes/structs/pfcataloggetitemcontainersrequest.md)
- [PFCatalogGetItemContainersResponse](/services/playfab/api-references/c/pfcatalogtypes/structs/pfcataloggetitemcontainersresponse.md)
