I'd write a class that let me do this:
data = DataExtractor(api_result)
try:
city = data.fetch('response', 1, 0, 'cid', int)
city_name = data.fetch('response', 1, 0, 'city_name', str)
except DataExtractionError:
print "Couldn't get the data!"
Then I'd just have to worry about checking the validity of incoming data in one place, DataExtractor. It will take care of verifying anything I throw at it, and will always throw the DataExtractionError if something doesn't line up. As Paul Martel points out, you should give the arguments of fetch to DataExtractionError so you can have a clear error message.
Another option to consider is using a json schema validator. Most of them can be used with objects that aren't actually JSON. Here is a link to PyPi which lists a few of them.
http://pypi.python.org/pypi?%3Aaction=search&term=json+schema&submit=search
The basic idea is that you tell it the structure of the data, and it can determine whether or not it actually fits. This can simplify your code because you once you've validated the data you can assume that the data's structure is correct and you don't have to do as much testing.