> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vertracloud.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Redis Info

> Memory, keyspace and hit-rate counters of a Redis database.

<Note>
  Every `/data` endpoint needs the **Intermediary** plan or higher, on the **database owner's**
  account — not the caller's. Below that the answer is `PLAN_RESTRICTED_FEATURE` (403).
  It is also **dashboard-session only**: an API key gets `API_KEY_SCOPE_DENIED` (403) here, regardless of
  its scopes.
</Note>

Redis only.

<ParamField path="id" type="string" required>The ID of the database.</ParamField>
<ParamField query="workspace" type="string">Workspace the database belongs to.</ParamField>

### Response

<ResponseField name="response" type="object">
  <Expandable title="Toggle object">
    <ResponseField name="version" type="string">Redis version.</ResponseField>
    <ResponseField name="used_memory_bytes" type="number">Memory in use.</ResponseField>
    <ResponseField name="max_memory_bytes" type="number">`maxmemory`, or `null` when unset.</ResponseField>
    <ResponseField name="keys_total" type="number">Keys across all databases.</ResponseField>
    <ResponseField name="expires_total" type="number">Keys with a TTL.</ResponseField>
    <ResponseField name="hits" type="number">Keyspace hits.</ResponseField>
    <ResponseField name="misses" type="number">Keyspace misses.</ResponseField>
    <ResponseField name="connected_clients" type="number">Clients connected.</ResponseField>
    <ResponseField name="ops_per_second" type="number">Instantaneous ops/s.</ResponseField>
  </Expandable>
</ResponseField>
