$ client = \ Drupal :: httpClient ();
$base_url = 'http://drupal.com';
$options = array(
'method' => 'POST',
'data' => json_encode($data),
'timeout' => 5,
'headers' => array('Content-Type' => 'application/json')
);
$request =$client->post($base_url.'/api/post',$options);