Get rows from a table with pagination and optional filtering.
Filtering: Use the filter query parameter with a JSON-encoded object. Keys are column names, values are objects with one operator.
Operators:
equals — exact matchcontains — substring match (case-insensitive)not_equals — excludes exact matchis_empty — column value is null (pass true)is_not_empty — column value is not null (pass true)Multiple column filters use AND logic.
Examples:
?filter={"company":{"equals":"OpenAI"}}?filter={"name":{"contains":"Data"}}?filter={"name":{"contains":"a"},"revenue":{"equals":"5000"}}?filter={"email":{"is_not_empty":true}}API Key for authentication
The UUID of the table to retrieve
Number of items per page (max 500).
x <= 500Page number to retrieve.
x >= 1JSON-encoded filter object. Keys are column names, values are objects with one operator. Operators: equals, contains, not_equals, is_empty, is_not_empty. Example: {"company":{"contains":"tech"},"status":{"equals":"active"}}
"{\"company\":{\"contains\":\"tech\"}}"
Table retrieved successfully