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

# System Tables

> Query system tables using the same API as regular tables.

Unlike the vanilla Convex API, system tables (`_storage`, `_scheduled_functions`) are queryable using the exact same API as regular tables. These tables contain metadata for built-in Convex features, and are read-only.

```ts theme={null}
reader.table("_storage").get(storageId);
```

```ts theme={null}
reader.table("_scheduled_functions").index("by_creation_time", "desc").take(10);
```
