Query records from a table with filtering, sorting, and pagination
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Name of the table to query
Maximum number of records to return
1 <= x <= 1000
Number of records to skip for pagination
x >= 0
Sort order (e.g., "createdAt.desc", "name.asc")
Comma-separated list of columns to return
Filter by field value (e.g., "?status=eq.active", "?age=gt.18")
List of records
The response is of type object[]
.