So, my question is, is there a default implementation of REST API in Ember.js.
That question makes no sense. REST is standard http. The REST part means that the url of the request has semantics. So if you make a GET request on the endpoint .../somemodel/ that means "Get a list of somemodel instances". If you do a GET request to .../somemodel/2 that means get me the instance of somemodel with id 2. If you do a POST to .../somemodel that means create an instance of somemodel.
There is no "default implementation of REST API". REST depends on the urls you use to interact with data, and the urls depend on your application. That said, all you really need is standard xhrs. Ember (if I remember from the lists correctly when it was SC2) uses jquery, so you just make standard ajax requests, defining a URL scheme that Represents your application model. see this
https://github.com/emberjs/ember.js/blob/master/packages/jquery-1.6.2/lib/main.js and search for ajax:
EDIT
In response to your comment, at least for SC, you always end up writing the requests. So you will always write your GET, POST, PUT, DELETE requests yourself. I personally try to not use the datasource abstraction, and just create an API file (or multiple files) that contains the interactions with the server. If you use a datasource, you still end up writing the requests in the appropriate places. so the answer is no.
Ember's data module seems to be based on the SC store, so this probably applies to ember, but I am not sure...