Yerel profil — Posta kodunu ya da ilçe kodunu o yerin künyesine çevirir. Çözünürlük ilçe düzeyindedir; dönen koordinat ilçe merkezidir, adresin kendisi geocode edilmez.
Parametreler
| Parametre | Tip | Yer | Zorunlu | Açıklama |
|---|---|---|---|---|
| postal_code | string | sorgu | Hayır | 5 haneli posta kodu. · örn. 06420 |
| district | integer | sorgu | Hayır | TÜİK ilçe kodu; postal_code verilmediğinde kullanılır. · örn. 1231 |
İstek
curl "https://api.apikapi.com/v1/profile?postal_code=06420" \ -H "X-API-Key: apk_…"
Örnek yanıt
1{2 "data": {3 "resolution": {4 "province": {5 "code": 6,6 "name": "Ankara",7 "slug": "ankara"8 },9 "district": {10 "code": 1231,11 "name": "Çankaya",12 "slug": "cankaya"13 },14 "lat": 39.81167,15 "lng": 32.89236,16 "postal_code": "06420",17 "units": 10,18 "confidence": "official"19 },20 "population": {21 "year": 2025,22 "total": 952198,23 "male": 454348,24 "female": 497850,25 "density_per_km2": 1965.7,26 "province_share": 0.161127 },28 "socioeconomic": {29 "score": 178.11,30 "national_rank": 1,31 "of": 973,32 "percentile": 100,33 "quintile": 1,34 "band": "en üst %20",35 "province_rank": 1,36 "province_of": 2537 },38 "province_context": {39 "gdp_per_capita_usd": {40 "value": 24031,41 "period": "2024"42 },43 "unemployment_rate": {44 "value": 8.5,45 "period": "2025"46 },47 "labour_force_rate": {48 "value": 55.2,49 "period": "2025"50 },51 "avg_education_years": {52 "value": 9.4,53 "period": "2025"54 }55 }56 }57}