PHP code example of benegedeniz / valorantapi

1. Go to this page and download the library: Download benegedeniz/valorantapi library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

benegedeniz / valorantapi example snippets




rantapi = new ValorantAPI(); // Create a new instance for ValorantAPI.

$match_data = $valorantapi->get_match('f87823c6-70e4-45c4-9857-6a0299e4eb9a'); // Get the match info for a spesific match id. (match_id)
$matches_data = $valorantapi->get_matches('eu', 'difftLe', 'A21'); // Get last matches of a spesific player. (region, username, tagline)
$account_data = $valorantapi->get_account('difftLe', 'A21'); // Get account info of a player. (username, tagline)
$current_mmr_data = $valorantapi->get_current_mmr('eu', 'difftLe', 'A21'); // Get the latest matches mmr info of a player. 
$mmr_history_data = $valorantapi->get_mmr_history('eu', 'difftLe', 'A21'); // Get the mmr history of a player.