I have managed to work with REST API\'s to fetch() data where the urls contain minimal parameters (and use GET).
fetch()
GET
How would one retrieve a c
Backbone.sync is the function used to interact with the server via your models. You can provide your own implementation that issues a POST request for the 'read' method instead of GET. See http://documentcloud.github.com/backbone/#Sync