V1Table
Delete rows using PostgREST-style filters
Filters are mandatory. Use the same query syntax as GET and include `Prefer: return=minimal` for HTTP 204 responses.
Path Parameters
table*string
Header Parameters
X-Athena-Client*string
apikey*string
x-api-key?string
Prefer?string
Set return=minimal for HTTP 204 responses.
Response Body
application/json
curl -X DELETE "https://athena-cluster.com/rest/v1/string" \ -H "X-Athena-Client: string" \ -H "apikey: string"{
"data": [
{}
]
}Empty
Empty
Empty
RPC compatibility (POST JSON body) POST
Body is either a plain JSON object of named arguments for `function_name`, or a full `GatewayRpcRequest`-shaped wrapper (`function`, `schema`, `args`, `filters`, etc.).
Query a table using PostgREST-style filters GET
Mirrors the Supabase PostgREST query syntax. Supply filter expressions (`column.eq=value`, `column.lt=value`, `or=(cond1,cond2)`, etc.), `select`, `limit`, `offset`, `order`, and the optional `Range` header (`items=0-24`). The handler also honors `Prefer: return=minimal`.