A comprehensive RESTful API providing accurate and up-to-date geographic data for Turkey, including provinces (il), districts (ilçe), and neighborhoods (mahalle).
- Complete Geographic Coverage: Access data for all 81 provinces of Turkey, their districts, and neighborhoods
- Simple RESTful Interface: Easy-to-use API endpoints with intuitive structure
- Filtering Capabilities: Filter districts by province and neighborhoods by district or province
- TypeScript Implementation: Built with TypeScript for robust type safety
- Performance Optimized: Fast response times with minimal overhead
- Open Source: Free to use and extend under MIT license
- Node.js (v20+)
- npm or yarn
- Clone the repository:
git clone https://github.com/onurusluca/turkey-geo-api.git
cd turkey-geo-api
- Install dependencies:
npm install
# or
yarn install
- For development with auto-restart:
npm run dev
# or
yarn dev
Build the project:
npm run build
# or
yarn build
Start the server:
npm start
# or
yarn start
The API will be running at http://localhost:8080.
Endpoint | Description |
---|---|
GET /api/provinces |
Get all provinces |
GET /api/provinces/:id |
Get a specific province by ID (Plate number) |
Endpoint | Description |
---|---|
GET /api/districts |
Get all districts |
GET /api/districts/:id |
Get a specific district by ID |
GET /api/districts/province/:provinceId |
Get all districts for a specific province |
Endpoint | Description |
---|---|
GET /api/neighborhoods |
Get all neighborhoods |
GET /api/neighborhoods/:id |
Get a specific neighborhood by ID |
GET /api/neighborhoods/district/:districtId |
Get all neighborhoods for a specific district |
GET /api/neighborhoods/province/:provinceId |
Get all neighborhoods for a specific province |
curl http://localhost:8080/api/provinces
curl http://localhost:8080/api/districts/province/6
[
{
"provinceId": 6,
"id": 1217,
"province": "Ankara",
"name": "Çankaya",
"area": 268
},
{
"provinceId": 6,
"id": 1233,
"province": "Ankara",
"name": "Keçiören",
"area": 190
}
]
This project is licensed under the MIT License. Feel free to use and extend it as you wish - see the LICENSE file for details.
Türkiye'nin tüm illeri, ilçeleri ve mahalleleri hakkında doğru ve güncel coğrafi veriler sunan kapsamlı bir RESTful API.
- Tam Coğrafi Kapsama: Türkiye'nin 81 ilinin, ilçelerinin ve mahallelerinin verilerine erişim
- Basit RESTful Arayüz: Sezgisel yapıya sahip, kullanımı kolay API endpoint'leri
- Filtreleme Özellikleri: İllere göre ilçeleri, ilçelere veya illere göre mahalleleri filtreleme
- TypeScript İmplementasyonu: Güçlü tip güvenliği için TypeScript ile geliştirilmiştir
- Performans Odaklı: Minimum yük ile hızlı yanıt süreleri
- Açık Kaynak: MIT lisansı altında ücretsiz kullanım ve geliştirme
- Node.js (v20+)
- npm veya yarn
- Depoyu klonlayın:
git clone https://github.com/onurusluca/turkey-geo-api.git
cd turkey-geo-api
- Bağımlılıkları yükleyin:
npm install
# veya
yarn install
- Geliştirme için otomatik yeniden başlatma ile:
npm run dev
# veya
yarn dev
Projeyi derleyin:
npm run build
# veya
yarn build
Sunucuyu başlatın:
npm start
# veya
yarn start
API http://localhost:8080 adresinde çalışıyor olacaktır.
Endpoint | Açıklama |
---|---|
GET /api/provinces |
Tüm illeri getir |
GET /api/provinces/:id |
ID'ye göre belirli bir ili getir (Plaka numarası) |
Endpoint | Açıklama |
---|---|
GET /api/districts |
Tüm ilçeleri getir |
GET /api/districts/:id |
ID'ye göre belirli bir ilçeyi getir |
GET /api/districts/province/:provinceId |
Belirli bir ilin tüm ilçelerini getir |
Endpoint | Açıklama |
---|---|
GET /api/neighborhoods |
Tüm mahalleleri getir |
GET /api/neighborhoods/:id |
ID'ye göre belirli bir mahalleyi getir |
GET /api/neighborhoods/district/:districtId |
Belirli bir ilçenin tüm mahallelerini getir |
GET /api/neighborhoods/province/:provinceId |
Belirli bir ilin tüm mahallelerini getir |
curl http://localhost:8080/api/provinces
curl http://localhost:8080/api/districts/province/6
[
{
"provinceId": 6,
"id": 1217,
"province": "Ankara",
"name": "Çankaya",
"area": 268
},
{
"provinceId": 6,
"id": 1233,
"province": "Ankara",
"name": "Keçiören",
"area": 190
}
]
Bu proje MIT Lisansı altında lisanslanmıştır. İstediğiniz gibi kullanabilir ve geliştirebilirsiniz - detaylar için LICENSE dosyasına bakın.