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