$data = json_decode(file_get_contents('http://test.ru/api'), 1)['response'];
$data2 = json_decode(file_get_contents('http://test.ru/api?info'), 1)['response'];
$data = array_merge($data, $data2);
foreach ($data as $d) {
// Здесь данные из api?info и api.
}