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

# ARMGET

> Read several array slots in request order.

## Arguments

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

<ParamField body="indexes" type="*indexes: int" required>
  One or more indexes, passed as separate arguments.
</ParamField>

## Response

<ResponseField type="List[Optional[str]]" required>
  One value per requested index, with `null` (TypeScript) / `None` (Python) for empty slots or missing keys.
</ResponseField>

<RequestExample>
  ```py Example theme={"system"}
  redis.armset("readings", {0: "a", 10: "b"})
  print(redis.armget("readings", 10, 5, 0))  # ["b", None, "a"]
  ```
</RequestExample>

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