Copyright 2024 © Fixerkit.com
Follow @fixerkit
// Örnek : /api/v1.0/user/info $ch = curl_init("https://fixerkit.com/api/v1.0/user/info?access_token=xxx"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $response = curl_exec($ch); curl_close($ch);
// Örnek : /api/v1.0/user/myLimit $ch = curl_init("https://fixerkit.com/api/v1.0/user/myLimit?access_token=xxx"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $response = curl_exec($ch); curl_close($ch);