GET
/
api
/
v1
/
table
curl --request GET \
  --url https://your-engine-url/api/v1/table/ \
  --header 'Authorization: <api-key>'
{
  "tables": [
    {
      "name": "string",
      "schema": "string",
      "columns": [
        {
          "id": 0,
          "default": "string",
          "is_nullable": true,
          "type": "string",
          "name": "string"
        }
      ],
      "constraints": {
        "primary_key": {
          "name": "",
          "columns": []
        },
        "foreign_keys": [
          {
            "name": "string",
            "reference_schema": "public",
            "reference_column": "string",
            "reference_table": "string",
            "column": "string"
          }
        ]
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Enter: 'Bearer <JWT>', where JWT is the access token. Example: Bearer access_token_comes_here

Query Parameters

schema
string
verbose
boolean
default:false
offset
integer
default:0
limit
integer
default:100

Response

200
application/json
Successful Response (when verbose is set to True)

The response is of type any.