API v1.0 is Live—7 Endpoints
UnifiedAPI Documentation
Everything you need to integrate UnifiedAPI into your application
Base URL
/api/geo/v1.0Endpoints
All available REST endpoints for Bangladesh geo data.
Quick Start
No API key or authentication required. Just append the endpoint to the base URL and make a GET request.
example.js
const res = await fetch("/api/geo/v1.0/divisions");
const json = await res.json();
console.log(json.data);
// [
// { id: "6", name: "Dhaka", bn_name: "ঢাকা" },
// { id: "1", name: "Chattagram", bn_name: "চট্টগ্রাম" },
// ...8 divisions total
// ]