Is it possible in SPFX to make a REST API call with a service account instead of the current users’ credentials?
This is not possible from within the SharePoint Framework. REST calls execute on behalf of the current user. If you need to use another credential, you’ll have to create a server side component such as your own WebAPI or using an Azure Function HTTP trigger that will allow you to execute on behalf of another user.