How can I print out content of "url" from this JSON string.
[{"breeds":[],"id":"bkv","url":"https://cdn2.thecatapi.com/images/bkv.jpg","width":800,"height":600}]
I want to just print that in my python console. That JSON is from https://api.thecatapi.com/v1/images/search if it matters.
response = requests.get('https://api.thecatapi.com/v1/images/search')
x = response.json()
json_obj = json.loads(x)
for i in json_obj:
print(i["url"])