You can get the HttpResponse object for the current request in the action method using the following line:
HttpContext.Current.Response
and therefore you can write:
HttpContext.Current.Response.Redirect("http://www.google.com");
Anyway, you are using HttpResponseMessage, so the correct redirection method would be as follows:
public HttpResponseMessage Get(string id) {
source share