Erro ao analisar valores JSON no ASP.NET MVC?

Estou tentando usar a API de pesquisa do StackOverflow para pesquisar perguntas.

Eu estou usando essa ação para executar a análise:

public ActionResult StackExchange(string sq)
{
    string url = "http://api.stackoverflow.com/1.1/search?intitle=" + sq + "&order=desc";    
    var client = new WebClient();
    var response = client.DownloadString(new Uri(url));
    JObject o = JObject.Parse(response);// ERROR
    int total = (int)o["total"];
    return View(total);
}

Aqui está o URL JSON que estou tentando analisar:

http://api.stackoverflow.com/1.1/search?intitle=asp.net%20custom%20404&order=desc

Eu estou tentando extrair os seguintes dados:

`"total": 3` , 
`"question_timeline_url": "/questions/10868557/timeline",`
`"title": "Asp.net custom 404 not working using Intelligencia rewriter"`

Está dando erro como:Newtonsoft.Json.JsonReaderException: Caractere inesperado encontrado ao analisar o valor:. Caminho '', linha 0, posição 0.

Qual pode ser o motivo da exceção? Eu usei o mesmo método anteriormente e funcionou bem.

Por favor sugira.

questionAnswers(2)

yourAnswerToTheQuestion