What Is My Full Endpoint URI

I'm just getting started with Metabase's API and have read through the getting started API. However, your documentation only refers to common parts of the URI. Where do I find the full URL for the endpoint?

https://metabase.com/blah/blah/blah/api/user/current

Your doucmentation tells to use the endpoint "api/user/current" to get the current user, however, what do I use for the rest of the full URL?

By the way... to access the Metabase application, my company uses the URL (example domain not provided only)

metabase.mycompanywebsiedomain.com

Hi @awconsultingservices

If your Metabase instance is on https://metabase.example.com (the Site URL), and you want to access /api/user/current, then the URL is
https://metabase.example.com/api/user/current

The best way to learn the API, is to just use Metabase while having your browser developer Network-tab open and looking at the request, and what data is being send/received.

Excellent. Thank you!