# JSON.MGET

> Get the same path from multiple JSON documents.

## Arguments

<ParamField body="keys" type="...string[]" required>
  One or more keys of JSON documents.
</ParamField>

<ParamField body="path" type="string" required>
  The path to get from the JSON document. `$` is the root.
</ParamField>

## Response

<ResponseField type="TValue[]" required>
  The values at the specified path or `null` if the path does not exist.
</ResponseField>

<RequestExample>
```ts Example
const values = await redis.json.mget(["key1", "key2"],  "$.path.to.somewhere");
```

</RequestExample>
