# IsBookmarked Criterion

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

IsBookmarked Search Criterion

The `IsBookmarked` Search Criterion searches for location based on whether it's bookmarked or not. It works with current user reference.

This Criterion is available only for location Search.

## Arguments

- `value` - bool representing whether to search for bookmarked location (default `true`) or not bookmarked location (`false`)

## Example

### REST API

**XML**

```xml
<Query>
    <Filter>
        <IsBookmarkedCriterion>true</IsBookmarkedCriterion>
    </Filter>
</Query>
```

**JSON**

```json
"Query": {
    "Filter": {
        "IsBookmarkedCriterion": true
    }
}
```
