> ## Documentation Index
> Fetch the complete documentation index at: https://upstash-dx-3009-array-sdk-docs.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# ARSEEK

> Choose the index where the next append will write.

Moves only the append cursor; existing values are unchanged. The key must already exist.

## Arguments

<ParamField body="key" type="str" required>
  The array key.
</ParamField>

<ParamField body="index" type="int" required>
  The index where the next ARINSERT should write.
</ParamField>

## Response

<ResponseField type="bool" required>
  TypeScript returns `1` if the cursor was set and `0` if the key does not exist. Python returns `True` or `False`, respectively.
</ResponseField>

<RequestExample>
  ```py Example theme={"system"}
  redis.arset("readings", 10, "existing")
  next_index = redis.arlen("readings")
  print(redis.arseek("readings", next_index))  # True
  print(redis.arinsert("readings", "new"))  # 11
  print(redis.arget("readings", 10))  # "existing"
  ```
</RequestExample>

See the [server command reference](/redis/commands/array/arseek) for protocol details.
