List published articles
curl --request GET \
--url https://leuwongrr.online/api/v1/articlesconst options = {method: 'GET'};
fetch('https://leuwongrr.online/api/v1/articles', 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/articles",
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": {
"articles": [
{
"title": "Cara Top Up Robux Aman",
"slug": "cara-top-up-robux-aman",
"category": "Robux",
"excerpt": "Panduan singkat top up Robux aman.",
"cover_image": "https://leuwongrr.online/uploads/articles/cover.webp",
"article_url": "https://leuwongrr.online/artikel/cara-top-up-robux-aman",
"published_at": "2026-04-29 10:00:00"
}
],
"limit": 10
}
}{
"success": false,
"message": "Unauthorized API token."
}Endpoint Publik Aman
List published articles
Mengambil daftar artikel public yang sudah published.
GET
https://leuwongrr.online
/
api
/
v1
/
articles
List published articles
curl --request GET \
--url https://leuwongrr.online/api/v1/articlesconst options = {method: 'GET'};
fetch('https://leuwongrr.online/api/v1/articles', 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/articles",
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": {
"articles": [
{
"title": "Cara Top Up Robux Aman",
"slug": "cara-top-up-robux-aman",
"category": "Robux",
"excerpt": "Panduan singkat top up Robux aman.",
"cover_image": "https://leuwongrr.online/uploads/articles/cover.webp",
"article_url": "https://leuwongrr.online/artikel/cara-top-up-robux-aman",
"published_at": "2026-04-29 10:00:00"
}
],
"limit": 10
}
}{
"success": false,
"message": "Unauthorized API token."
}Was this page helpful?