If a program needs to make an API call, it is very likely that there is an ApiClient class to make http requests.
let api = new ApiClient('https://api.bank.com')
let bank = new BankFacade(api)
Since I consider an http request as something very basic in any app, I like having this in my runtime