https://orkut.ftvpn.me
POST /api/mutasi POST /api/mutasi/private POST /api/saldo POST /health
{ "auth_username": "YOUR_USERNAME", "auth_token": "YOUR_TOKEN" }
curl -X POST "https://orkut.ftvpn.me/api/mutasi" \ -H "Content-Type: application/json" \ -d '{"auth_username":"YOUR_USERNAME","auth_token":"YOUR_TOKEN"}'
const endpoint = "https://orkut.ftvpn.me/api/mutasi"; const body = { auth_username: "YOUR_USERNAME", auth_token: "YOUR_TOKEN" }; fetch(endpoint, { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify(body), }) .then(r => r.json()) .then(console.log) .catch(console.error);
"YOUR_USERNAME", "auth_token" => "YOUR_TOKEN" ]); $ch = curl_init($endpoint); curl_setopt_array($ch, [ CURLOPT_POST => true, CURLOPT_HTTPHEADER => ["Content-Type: application/json"], CURLOPT_POSTFIELDS => $payload, CURLOPT_RETURNTRANSFER => true ]); $response = curl_exec($ch); curl_close($ch); echo $response;
import requests endpoint = "https://orkut.ftvpn.me/api/mutasi" body = {"auth_username": "YOUR_USERNAME", "auth_token": "YOUR_TOKEN"} resp = requests.post(endpoint, json=body, timeout=10) print(resp.status_code, resp.json())