# JSON.RESP

> Return the value at the path in Redis serialization protocol format.

## Arguments

<ParamField body="key" type="str" required>
    The key of the json entry.
</ParamField>
<ParamField body="path" type="str" required>
    The path of the object. `$` is the root.
</ParamField>



## Response

<ResponseField type="TValue" required>
  Return the value at the path in Redis serialization protocol format.
</ResponseField>

<RequestExample>
```py Example
resp = redis.json.resp("key", "$.path")
```
</RequestExample>
