Thanks to @C3roe for coming up with a great way to sort this. I wanted to show this answer marked complete.
$paypalData = array_values(array_filter($results['meta_data'], function($item) { return $item['key'] == '_ppcp_paypal_fraud_result'; }));
Excellent way to loop through array to find specific values.