Skip to main content

Querying

Chain after GET https://api.basic.tech/account/{project_id}/db/{table} endpoint as query params.

Filtering (filter)

  • Method: filter(conditions)
  • Supported Operators: eq, neq, gt, gte, lt, lte, like, ilike, in, not (see list of operators)

Ordering (order)

  • Method: order(field, direction?) (direction defaults to ‘asc’)

Pagination (limit, offset)

  • Methods: limit(count), offset(count)

Supported operators

Limitations

  • Only one filterable condition per field per query (no compound filters across multiple fields)
  • Range filters (e.g., ?field=gte.x&lte.y) not supported
  • Method chaining order is flexible, but all must be chained after GET https://api.basic.tech/account/{project_id}/db/{table}