With selenium wire yes.
driver.last_request.response
for the last response.
You can also get the first or all responses.
print(driver.last_request.response)
Will, in your case, print "200 OK"
You can also get just the response code with:
driver.last_request.response.status_code