GET
/
v1
/
tables
/
{table}
curl --request GET \
  --url https://api.botpress.cloud/v1/tables/{table}
{
  "table": {
    "id": "<string>",
    "name": "<string>",
    "factor": 1,
    "frozen": true,
    "schema": {
      "$schema": "<string>",
      "properties": {},
      "additionalProperties": true,
      "required": [
        "<string>"
      ],
      "type": "object"
    },
    "tags": {},
    "isComputeEnabled": true,
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  },
  "rows": 123,
  "stale": 123,
  "indexing": 123
}

Path Parameters

table
string
required

The table's name or unique identifier for targeting specific table operations.

Response

200
application/json
Details of the requested table, including row count and indexing status.
table
object
required
rows
number
required

The total number of rows present in the table.

stale
number
required

The number of stale rows that are waiting to be processed

indexing
number
required

The number of rows that are waiting to be indexed (for search)