This seems like an obvious one, but I\'m somehow missing it...
How do you send options along with a backbone.js collection fetch()?
Or, from a broader point of
Override the "url" function of your collection and add the parameters (?param=xyz).
The options parameter of fetch can also be used as it is the one passed along to the final jQuery ajax call. So if you add a "data" param there it will be used.