Go APIdukcapil.kemendagri.go.id ↗
Access articles from the Dukcapil official blog to retrieve comprehensive content including titles, body text, metadata, tags, and related articles for research or informational purposes. Fetch specific articles to gather civil registry and population management information directly from Indonesia's official source.
curl -X GET 'https://api.parse.bot/scraper/865277fc-20b3-4604-9d9d-45fbe8a86c3e/get_article?slug=ini-cara-benar-cek-nik-ktp-el-ke-dukcapil' \ -H 'X-API-Key: $PARSE_API_KEY'
Retrieve a single blog article by its URL slug. Returns the full article content including title, publication date, category, view count, featured image, body text (plain and HTML), embedded links, tags, and related articles listed in the sidebar. One HTTP round trip per call.
| Param | Type | Description |
|---|---|---|
| slugrequired | string | URL slug of the blog article (the last path segment of the article URL, e.g. 'ini-cara-benar-cek-nik-ktp-el-ke-dukcapil'). |
{
"type": "object",
"fields": {
"url": "Canonical URL of the article",
"tags": "Array of tag strings associated with the article",
"links": "Array of objects with 'text' and 'url' for each hyperlink in the article body",
"title": "Article headline",
"views": "Formatted view count string",
"category": "Article category label",
"body_html": "Full article body as raw HTML",
"body_text": "Full article body as plain text with newlines separating paragraphs",
"description": "Short description from Open Graph meta tag",
"image_caption": "Caption text for the featured image",
"date_published": "Publication date as displayed on the page (e.g. '01 Juli 2024')",
"featured_image": "Absolute URL of the article's featured image",
"related_articles": "Array of related article objects with 'title', 'url', and 'date'"
},
"sample": {
"data": {
"url": "https://dukcapil.kemendagri.go.id/blog/read/ini-cara-benar-cek-nik-ktp-el-ke-dukcapil",
"tags": [
"NIK",
"nomor induk kependudukan",
"Direktur PIAK Handayani Ningrum"
],
"links": [
{
"url": "http://kemendagri.lapor.go.id",
"text": "kemendagri.lapor.go.id"
}
],
"title": "Ini Cara Benar Cek NIK KTP-el ke Dukcapil",
"views": "4,859,881",
"category": "KELOLA INFORMASI",
"body_html": "<div class=\"entry-content\"><div style=\"color: blue\"><p><strong>Jakarta</strong>...</p></div></div>",
"body_text": "Jakarta\n- Baru-baru ini muncul informasi berita di laman Detikcom...",
"description": "Jakarta - Baru-baru ini muncul informasi berita di laman Detikcom tentang cara memverifikasi dan validasi Nomor Induk Kependudukan (NIK). Berita yang disebut-sebut bersumber dari situs Dukcapil Pemkab",
"image_caption": "Ilustrasi. [Foto: Google]",
"date_published": "01 Juli 2024",
"featured_image": "https://dukcapil.kemendagri.go.id/images/blog_post/cek-ektp-768x576.jpg",
"related_articles": [
{
"url": "https://dukcapil.kemendagri.go.id/blog/read/dukcapil-jemput-bola-ke-riung-419-dokumen-kependudukan-warga-terdampak-gempa-ngada-dipulihkan",
"date": "26/08/2026",
"title": "Dukcapil Jemput Bola ke Riung, 419 Dokumen Kependu..."
}
]
},
"status": "success"
}
}About the Go API
The Go API on Parse exposes 1 endpoint for the publicly available data on dukcapil.kemendagri.go.id. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.