GET
/
tables
List tables
curl --request GET \
  --url https://api.fluxend.app/tables \
  --header 'Authorization: <authorization>' \
  --header 'X-Project: <x-project>'
{
  "content": [
    {
      "estimatedRows": 123,
      "id": 123,
      "name": "<string>",
      "schema": "<string>",
      "totalSize": "<string>"
    }
  ],
  "errors": [
    "<string>"
  ],
  "metadata": "<any>",
  "success": true
}

Headers

Authorization
string
required

Bearer Token

X-Project
string
required

Project UUID

Response

200
application/json

List of tables

The response is of type object.