List active Robux packages
curl --request GET \
--url https://leuwongrr.online/api/v1/catalog/robux-packagesconst options = {method: 'GET'};
fetch('https://leuwongrr.online/api/v1/catalog/robux-packages', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://leuwongrr.online/api/v1/catalog/robux-packages",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}{
"success": true,
"message": "OK",
"data": {
"packages": [
{
"code": "RBX-100",
"name": "100 Robux",
"robux_amount": 100,
"price": 12000,
"formatted_price": "Rp12.000",
"currency": "IDR",
"description": "Paket Robux aktif",
"sort_order": 1
}
],
"limit": 50
}
}{
"success": false,
"message": "Unauthorized API token."
}Endpoint Publik Aman
List active Robux packages
Mengambil katalog paket Robux aktif. Endpoint public, tidak perlu User API Token.
GET
https://leuwongrr.online
/
api
/
v1
/
catalog
/
robux-packages
List active Robux packages
curl --request GET \
--url https://leuwongrr.online/api/v1/catalog/robux-packagesconst options = {method: 'GET'};
fetch('https://leuwongrr.online/api/v1/catalog/robux-packages', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://leuwongrr.online/api/v1/catalog/robux-packages",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}{
"success": true,
"message": "OK",
"data": {
"packages": [
{
"code": "RBX-100",
"name": "100 Robux",
"robux_amount": 100,
"price": 12000,
"formatted_price": "Rp12.000",
"currency": "IDR",
"description": "Paket Robux aktif",
"sort_order": 1
}
],
"limit": 50
}
}{
"success": false,
"message": "Unauthorized API token."
}Was this page helpful?