> ## Documentation Index
> Fetch the complete documentation index at: https://upstash.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# JSON.GET

> Get a single value from a JSON document.

## Arguments

<ParamField body="key" type="str" required>
  The key of the json entry.
</ParamField>

<ParamField body="paths" type="*List[str]" required>
  One or more paths to retrieve from the JSON document. `$` is the root.
</ParamField>

## Response

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

<RequestExample>
  ```py Example theme={"system"}
  value = redis.json.get("key", "$.path.to.somewhere")
  ```
</RequestExample>


## Related topics

- [JSON.GET](/docs/redis/sdks/ts/commands/json/get.md)
- [JSON.MGET](/docs/redis/sdks/py/commands/json/mget.md)
- [Get a Queue](/docs/qstash/api-reference/queues/get-a-queue.md)
- [Get Flow Control Key](/docs/workflow/api-reference/flow-control/get-flow-control-key-1.md)
