Agency: Kementerian PAN-RB (Ministry of Administrative Reform) Portal: https://www.lapor.go.id API type: โ No public API
LAPOR (Layanan Aspirasi dan Pengaduan Online Rakyat) is Indonesia's national complaint handling system. Citizens submit complaints about public services, which get routed to relevant agencies.
LAPOR does not provide a public API. The platform is web-only with login required for submission. Data is not available for bulk download.
- Submit complaints via web form (requires registration)
- Track complaint status via tracking ID
- Browse public complaints (some are published)
import requests
# Browse published complaints (if publicly visible)
resp = requests.get(
"https://www.lapor.go.id/laporan",
headers={"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)"},
timeout=30,
)
# Limited public data โ most complaints require authentication to view- No API โ not useful for data projects
- Authentication required โ most data behind login
- Government-to-government โ primarily for inter-agency complaint routing
- Included for completeness โ unlikely to be useful for data projects