GET /api/v1/articles/{uuid}¶
Detail artikel lengkap untuk publish ke CMS.
Request¶
GET /api/v1/articles/{uuid}
Authorization: Bearer nk_...
Contoh¶
curl -s -H "Authorization: Bearer $NULIS_API_KEY" \
"https://studio.nulis.top/api/v1/articles/550e8400-e29b-41d4-a716-446655440000"
Response 200¶
{
"article_uuid": "550e8400-e29b-41d4-a716-446655440000",
"topic": "Judul topik",
"status": "completed",
"word_count": 1500,
"created_at": "2026-07-01T10:00:00",
"updated_at": "2026-07-04T08:30:00",
"title": {
"h1": "Judul H1",
"slug": "judul-h1"
},
"content": {
"body_markdown": "# Judul\n\nKonten…",
"body_html": "<h1>Judul</h1><p>Konten…</p>"
},
"seo_package": {
"version": "1.0",
"seo": {
"meta_title": "…",
"meta_description": "…",
"focus_keyword": "…"
}
}
}
Idempotency¶
Gunakan article_uuid sebagai unique key di CMS — jangan buat duplikat post.
Errors¶
| Status | Arti |
|---|---|
401 |
Unauthorized |
404 |
Artikel tidak ditemukan atau bukan milik user key |