GET
/
api
/
v1
/
table
/
{table_name}
/
records
curl --request GET \
  --url https://your-engine-url/api/v1/table/{table_name}/records \
  --header 'Authorization: <api-key>'
{
  "records": [
    {}
  ],
  "total": 123
}

Authorizations

Authorization
string
header
required

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

Path Parameters

table_name
string
required

Query Parameters

schema
string
default:public
offset
integer
default:0
limit
integer
default:100

Response

200
application/json
Successful Response
total
integer
required
records
object[]