GuzzleHttp\Stream\StreamInterface object, or something that can be cast to a string. Found object(stdClass) code example
Example: php convert guzzle response to json
$response = GuzzleHttp\get('http://httpbin.org/get');
if ($response->getBody()) {
echo $response->getBody();
// JSON string: { ... }
}