I know that in order to keep an .env secret and make an API call, it can be done via the api routes' handlers and make the API call server side, then return the reply to the client.
If the API call is authenticated, then a token needs to be obtained at the server side from a handler and then the API call can be made.
How can this token be kept secret and be reused across handlers to make multiple API calls from the server side?