API_ANON_KEY
: This is the anonymous public key. It’s intended for client-side usage, for example, when using the Supabase client library in your frontend application. This key has limited permissions as defined by your Row Level Security (RLS) policies.API_SERVICE_ROLE_KEY
: This is the service role key. It’s intended for server-side usage, such as in your backend services or scripts. This key has full access to your database and can bypass Row Level Security (RLS) policies. Treat this key like a password and keep it secure.API_ANON_KEY
for client-side, API_SERVICE_ROLE_KEY
for server-side) and that they are correctly implemented in your application.