Traffic Usage by Protocol Types
This operation shows the traffic usage by protocol type.
Parameters
Return Values
Example PHP Code
<?php $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => "https://api.medianova.com/v1/report/protocol", CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => "", CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 0, CURLOPT_FOLLOWLOCATION => false, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => "GET", )); $response = curl_exec($curl); curl_close($curl); echo $response;
Example Output
{ "status":true, "data":[ { "protocol":"http", "hit":134536038, "traffic":9766708919253, "bandwidth":113040612, "timezone":"GMT+3" }, { "protocol":"https", "hit":6581977, "traffic":70324124956, "bandwidth":813937, "timezone":"GMT+3" } ] }
Was this post helpful?
Let us know if you liked the post. That’s the only way we can improve.