// First, let's compose a twitter search request NSURL *twitterSearch = [NSURL URLWithString:@"http://search.twitter.com/search.json?q=@SoundCloud&rpp=100"]; // ... then we fetch us some json ... NSData *data = [NSData dataWithContentsOfURL:twitterSearch]; // ... and parse it. NSDictionary *json = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:NULL]; // This is where the fu