---
title: "ListTablesResponse"
description: "The `ListTablesResponse` entity."
section: "Reference"
group: "Types"
order: 143
---

## Definition

```ts
interface ListTablesResponse {
  tables: Array<{ name: string }>;
}
```

## Fields

| Field    | Type                       | Notes                                         |
| -------- | -------------------------- | --------------------------------------------- |
| `tables` | `Array<{ name: string; }>` | `required` — All user tables in the database. |
