I envision loopback's datasources & models as a useful tool for consuming an API, not just for automatically creating a REST API.
Pretend I'm using Spotify's API. I want a command line application that looks up user information on Spotify. I could write loopback models to consume say /v1/albums.
I'm hoping I can create an Album model and use it like Album.find('Thriller');.
What I don't want is to create a REST API. I just want a better language to consume other people's APIs such as Facebook or Instagram.