d3.jsondoesn't actually fulfill the request until you call get. So, if your goal is to make a pending http request, you can simply do:
var req = d3.json("http://localhost:8080/data")
.header("Application-ID", "1");
queue().defer(req.get);
source
share