-
Notifications
You must be signed in to change notification settings - Fork 0
IDnewsAPI
raw.api.github edited this page Apr 9, 2026
·
1 revision
Open-source Indonesian news API powered by JSON. Fast, simple, and ready to use — no backend required.
IDNews API menyediakan lebih dari 300+ berita Indonesia dalam format JSON yang bisa langsung digunakan untuk:
- 🌐 Website berita
- 📱 Aplikasi mobile
- 🤖 Bot / automation
- 🧪 Eksperimen data
Semua data di-host via GitHub dan dapat diakses secara publik.
Gunakan endpoint berikut untuk mengambil semua data berita:
https://raw.githubusercontent.com/amnottdevv/news-json-rawcontent-opensource/refs/heads/main/indotechnews/news1.json
Contoh struktur response:
{
"news": [
{
"id": 1,
"name": "Judul berita",
"topics": "tech, cyber",
"descriptions": "Isi berita...",
"date": "2026-04-01"
}
]
}fetch("https://raw.githubusercontent.com/amnottdevv/news-json-rawcontent-opensource/refs/heads/main/indotechnews/news1.json")
.then(res => res.json())
.then(data => {
console.log(data.news);
});fetch(".../news1.json")
.then(res => res.json())
.then(data => {
const techNews = data.news.filter(n =>
n.topics.includes("tech")
);
console.log(techNews);
});- 📰 Total berita: 300+
- 🏷️ Multi kategori & genre
- 🔄 Terus di-update secara berkala
-
Gunakan bersama:
-
/api/meta/status.txt→ cek status API -
/api/meta/stats.json→ statistik data -
/meta/rina.json→ filter konten sensitif -
/meta/trending.json→ ranking berita
-
- 🔥 Web berita tanpa backend
- 📊 Dashboard analitik berita
- 🤖 AI summarization / classifier
- 🧪 Testing & prototype project
- API berbasis file statis (bukan REST server)
- Tidak ada authentication / rate limit
- Cocok untuk project ringan & eksperimen
Menjadi standar open-source API berita Indonesia yang mudah diakses dan digunakan oleh siapa saja.