# RemoteId / ContentRemoteId Criterion

The [`RemoteId` / `ContentRemoteId` Search Criterion](https://doc.ibexa.co/en/latest/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-Values-Content-Query-Criterion-RemoteId.html) searches for content based on its remote content ID.

## Arguments

- `value` - string(s) representing the remote IDs

## Example

### PHP

```
$query->query = new Criterion\RemoteId('abab615dcf26699a4291657152da4337');
```

### REST API

**XML**

```
<Query>
    <Filter>
        <ContentRemoteIdCriterion>abab615dcf26699a4291657152da4337</ContentRemoteIdCriterion>
    </Filter>
</Query>
```

**JSON**

```
"Query": {
    "Filter": {
        "ContentRemoteIdCriterion": "abab615dcf26699a4291657152da4337"
    }
}
```
