> ## 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="string" required>
  The array key.
</ParamField>

<ParamField body="indexes" type="...(number | string)[]" required>
  One or more indexes, passed as separate arguments.
</ParamField>

## Response

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

Values use the SDK's automatic deserialization. Use `TData` to describe stored JSON values; it defaults to `string`.

<RequestExample>
  ```ts Example theme={"system"}
  await redis.armset("readings", { 0: "a", 10: "b" });
  console.log(await redis.armget("readings", 10, 5, 0)); // ["b", null, "a"]
  ```
</RequestExample>

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