<?php require_once __DIR__ . '/../config.php'; require_once __DIR__ . '/../vendor/autoload.php'; $basic = new \Nexmo\Client\Credentials\Basic(NEXMO_API_KEY, NEXMO_API_SECRET); $client = new \Nexmo\Client($basic); $response = $client->account()->getBalance(); echo round($response->data['balance'], 2) . " EUR\n";