HomeOpen DataAPI › Explorer

API Explorer

Interactive sandbox for WIB's open JSON endpoints. Pick a vertical and city, hit Fetch, see live JSON. Copy the curl/JavaScript/Python snippet at the bottom — works in your shell or notebook unmodified. No signup, no API key, CC-BY 4.0 attribution required.

Request

Endpoint https://wibest.in/data/api/hospitals/bangalore.json

Response

ready
// Click "Fetch JSON →" to see live data here.
// Try Bangalore hospitals — 30 records, ~12 KB.
curl https://wibest.in/data/api/hospitals/bangalore.json
const res = await fetch('https://wibest.in/data/api/hospitals/bangalore.json');
const json = await res.json();
console.log(json.data.slice(0, 5));
import urllib.request, json
with urllib.request.urlopen('https://wibest.in/data/api/hospitals/bangalore.json') as r:
    data = json.load(r)
print(data['count'], 'hospitals')

What you can build with this

The WIB API is intentionally simple — flat JSON, one file per city, no auth, no rate limits, no SLA. It exists for journalists, researchers, hobbyists, and side-project builders who need real Indian comparison data without scraping anyone.

Licence: CC-BY 4.0 — credit "WIB (wibest.in)" wherever you publish. Read the full API docs for response-schema reference and the changelog for versioning notes.