Open dataset of Togo's administrative divisions — 5 regions, 40 prefectures, 373 cantons with coordinates. CC-BY-4.0
# Togo Administrative Divisions / Togo
## Overview
| Item | Details |
|------|---------|
| Region | 5 |
| Prefecture | 40 |
| Canton | 373 |
| Coordinates | ✅ Included (all levels) |
| Formats | JSON, NDJSON, CSV |
| License | CC-BY-4.0 |
| Last Updated | 2026-08-20 |
| Website |
openadmindata.org |
| API |
openadmindata.org |
| Flag | PNG · SVG · PDF |
| National Anthem | 🎵 Listen & Download Togo National Anthem MP3 |
## Browse by Region
| # | Region | Prefectures | Cantons | Link |
|---|----|----|----|------|
| 1 | Centrale | 5 | 59 | Browse |
| 2 | Kara | 7 | 75 | Browse |
| 3 | Maritime | 9 | 68 | Browse |
| 4 | Plateaux | 12 | 103 | Browse |
| 5 | Savanes | 7 | 68 | Browse |
## Data Files
| File | Format | Description |
|------|--------|-------------|
| all-region.json | JSON | All 5 region records |
| all-prefecture.json | JSON | All 40 prefecture records |
| all-canton.json | JSON | All 373 canton records |
| all-flat.json | JSON | Levels 1-2 flat array |
| all-flat.ndjson | NDJSON | Streaming format |
| all-flat.csv | CSV | Spreadsheet format |
| hierarchy.json | JSON | Nested tree |
| schema.json | JSON Schema | Data schema |
## Quick Start
### Python
```python
import json
with open("data/all-region.json", "r", encoding="utf-8") as f:
data = json.load(f)
for r in data:
print(f"{r['name']['local']} ({r['name']['en']}) — {r['children_count']['prefecture']} prefectures")
```
### JavaScript
```javascript
import { readFileSync } from "fs";
const data = JSON.parse(readFileSync("data/all-region.json", "utf-8"));
console.log(`Total: ${data.length} regions`);
```
## Schema
| Field | Type | Description |
|-------|------|-------------|
| `id` | string | Unique identifier |
| `level` | integer | 1=region, 2=prefecture, 3=canton |
| `level_name` | object | Level label (local + English) |
| `name.local` | string | Name in local script |
| `name.en` | string | English name |
| `name.slug` | string | URL-safe slug |
| `parent` | object/null | Pa …