← Kembali
ORKUTPUBLIK API Docs
Ringkasan
Base URL
https://orkut.ftvpn.me
Endpoints
POST /api/mutasi
POST /api/mutasi/private
POST /api/saldo
POST /health
Body
{
  "auth_username": "YOUR_USERNAME",
  "auth_token": "YOUR_TOKEN"
}
cURL
curl -X POST "https://orkut.ftvpn.me/api/mutasi" \
  -H "Content-Type: application/json" \
  -d '{"auth_username":"YOUR_USERNAME","auth_token":"YOUR_TOKEN"}'
Node.js (fetch)
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);
PHP (cURL)
 "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;
Python (requests)
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())