# Price IsCustomPrice Criterion

> For the complete documentation index, see [llms.txt](https://doc.ibexa.co/en/5.0/llms.txt).

Price IsCustomPrice Search Criterion

The `IsCustomPrice` Search Criterion searches for prices that are custom prices.

## Arguments

This Criterion takes no arguments.

## Limitations

The `IsCustomPrice` Criterion isn't available in Solr or Elasticsearch engines.

## Example

### PHP

```php
use Ibexa\Contracts\Core\Repository\Values\Content\Query\Criterion;
use Ibexa\Contracts\ProductCatalog\Values\Price\PriceQuery;

$query = new PriceQuery(
    new \Ibexa\Contracts\ProductCatalog\Values\Price\Query\Criterion\IsCustomPrice()
);
```
