How do I check GoTrue/API version of a Supabase project?
Last edited: 1/17/2025
Make a GET
request to the health check endpoint to retrieve this information. Below is an example using curl
:
_10curl -X GET 'https://project-ref.supabase.co/auth/v1/health' -H 'apikey: ANON_KEY'_10_10{_10 "version": "v2.60.7",_10 "name": "GoTrue",_10 "description": "GoTrue is a user registration and authentication API"_10}