VibeKit Browse Table
vibekit_db_tableBrowse rows of one table with pagination and optional sorting — a quick read-only alternative to hand-writing a SELECT.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| appId | Yes | App ID (from vibekit_list_apps) | |
| limit | No | Max rows to return (default 50, max 200) | |
| table | Yes | Table name (see vibekit_db_schema) | |
| offset | No | Row offset for pagination (default 0) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ok | Yes | Whether the call succeeded. | |
| data | No | Rows from the requested table with pagination applied. | |
| error | No | Error message when ok is false (e.g. missing/invalid VIBEKIT_API_KEY, or an API error). |