Sometimes you need to get just a few values from your public Supabase table. It can be done using vanilla JS without official library and save you 100 kb.
Select all fields from table by id:
https://your-db-id.supabase.co/rest/v1/your-table?select=*&id=eq.your-id
But we have to pass public key. See JS wrapper below.