vivo.sx api php
<?php //this will response the accountinformations $method = "GET"; $url = "https://vivo.sx/api/v1/account/"; $api_key = "myLongKey123456789"; $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => $url, CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => "", CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 30, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => $method, CURLOPT_POSTFIELDS => "", CURLOPT_HTTPHEADER => array( "cache-control: no-cache", "content-type: application/json", "X-AUTH: $api_key" ), )); $response = curl_exec($curl); $err = curl_error($curl); curl_close($curl); if ($err) { echo "cURL Error #:" . $err; } else { echo $response; } //more info on https://vivo.sx/api ?>