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