Embed EndSARSList on your website or access the data via our public REST API. Free, no authentication required for read access.
Embed this site
<iframe src="https://endsarslist.com" width="100%" height="600" frameborder="0" style="border:none"></iframe>
Public API — Missing Persons
GET https://endsarslist-api.damidude.workers.dev/api/missing_persons?approved=true&limit=1000
Public API — Arrested Persons
GET https://endsarslist-api.damidude.workers.dev/api/arrested_persons?approved=true&limit=1000
Authentication
No browser key required for the public read API.
Example fetch (JavaScript)
fetch('https://ljjcsvsczxknctbbwrgd.supabase.co/rest/v1/missing_persons?select=*&is_approved=eq.true', {
headers: { apikey: 'sb_publishable_Er_LWUMANNk7HVvFt0vivA_R4XVG8kJfNMpjSL' }
}).then(r => r.json()).then(console.log);