277210 Text of the note goes here. 34709871 277210 Text of a comment goes here 34719228 #### my $xml = XML::XPath->new (xml => $res->decoded_content); my $nodeset = $xml->find ("/recordings/recording"); foreach my $recording ($nodeset->get_nodelist) { my $id = $recording->find ("id")->string_value (); my $body = $recording->find ("body")->string_value (); # Do something with id and body here }