> ## 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.SET

> Set the JSON value at path in key.

## Arguments

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

<ParamField body="path" type="string" required>
  The path of the value to set. `$` is the root.
</ParamField>

<ParamField body="value" type="TValue" required>
  The value to set.
</ParamField>

## Response

<ResponseField type="OK" required>
  `OK`
</ResponseField>

<RequestExample>
  ```ts Example theme={"system"}
  Set the JSON value at path in key.
  redis.json.set(key, "$.path", value);
  ```

  ```ts NX theme={"system"}
  const value = ...
  redis.json.set(key, "$.path", value, { nx:true });
  ```

  ```ts XX theme={"system"}
  const value = ...
  redis.json.set(key, "$.path", value, { xx:true });
  ```
</RequestExample>


## Related topics

- [JSON.SET](/docs/redis/commands/json/json-set.md)
- [JSON.MERGE](/docs/redis/commands/json/json-merge.md)
- [Quickstart](/docs/redis/search/getting-started.md)
- [E-commerce Search](/docs/redis/search/recipes/e-commerce-search.md)
