A few time ago, there has been a discussion about exposing Models on play google group. It was quite a picky discussion because the audience was completely cut in 2 groups:
- the ones who would really like this feature and want it absolutely.
- the ones who say it's a really bad (even dangerous) manner to expose directly your model on presentation layer because it break the MVC design and expose directly your business data with potential security or data integrity breaches etc...
I'm not in any group and I simply consider the question objectively...
When looking at this Django API, I think that it's not much a problem if you can control how your model is exposed and what exactly is exposed.
But I don't know anything doing it out of the box in Play!... I don't know if the guy who began the discussion evoked here before has ever finished his module... Anyway, the CRUD module already does something like that because it introspects your model fields to expose a CRUD interface... so exposing it as REST would just be a matter of presentation (and some work) IMHO.