Read rows from database table
Query rows from a table in the database. Supports filtering, ordering, and pagination using PostgREST-style query parameters.
**Filter Syntax:**
- `?column=eq.value` - Equal
- `?column=neq.value` - Not equal
- `?column=gt.value` - Greater than
- `?column=gte.value` - Greater than or equal
- `?column=lt.value` - Less than
- `?column=lte.value` - Less than or equal
- `?column=like.*pattern*` - LIKE (case-sensitive)
- `?column=ilike.*pattern*` - ILIKE (case-insensitive)
- `?column=in.(a,b,c)` - IN list
- `?column=is.null` - IS NULL
Authentication
X-API-KEYstring
API Key authentication via header
OR
AuthorizationBearer
Bearer authentication of the form Bearer <token>, where token is your auth token.
Path parameters
asset_id
table_name
Query parameters
select
Columns to return (comma-separated, e.g., ‘id,name,email’)
order
Order by clause (e.g., ‘created_at.desc’, ‘name.asc’)
limit
Maximum number of rows to return
offset
Number of rows to skip
Response
Successful Response
data
Array of row objects
Errors
400
Bad Request Error
403
Forbidden Error
404
Not Found Error
422
Unprocessable Entity Error
501
Not Implemented Error
503
Service Unavailable Error
