Yelp API 404 status

I have set up my authentification token already. When I run my code:

(document).ready(function(){
     $.ajax({
     	type: "GET",
      url: "https://api.yelp.com/v3/businesses/north-india-restaurant-san-francisco/reviews&callback=?",
      headers: {
        Authorization: "Bearer TOKEN"
      },
      
      cache: true,
      dataType: 'json',
      success: function(data) {
        console.log("Your request succeeded!");
        }
    });
  });

I get a 404 status.

. Thanks for any help

Try it without the &callback=? at the end.