how does one make a request to supabase REST API? ...
# help
b
how does one make a request to supabase REST API? I'm getting "No API Key was found in request". Using Postman with auth set to API key which I filled with the anon key
g
If you go to the API tab in the UI you can click on the bash tab to see what you need for different calls.
curl 'https://ugccqehfhfhhfheypbq.supabase.co/rest/v1/test?select=id' \ -H "apikey: SUPABASE_KEY" \ -H "Authorization: Bearer SUPABASE_KEY"
b
For some reason I find it hard navigating through Supabase admin console
yes I've found that now at https://supabase.com/docs/guides/api
ty