Yükleniyor...
Yükleniyor...
14.611 istasyon, 81 il, günlük güncelleme. 5 dakikada entegre et.
14.611
İstasyon
81 İl
Kapsam
<200ms
Yanıt Süresi
99.9%
Uptime
Başvuru formunu doldurun. Starter key anında, Pro/Business 24 saat içinde gönderilir.
curl -H "Authorization: Bearer YOUR_API_KEY" \ "https://ucuzyakitbul.com.tr/api/stations?city=İstanbul&limit=3"
{
"stations": [
{
"name": "Shell Kadıköy",
"brand": "Shell",
"fuelPrices": [{ "fuelType": "Benzin", "price": 60.98 }]
}
],
"total": 982,
"hasMore": true
}Tüm isteklerde Authorization header'ı gönderin:
Authorization: Bearer YOUR_API_KEY
Key eksik veya geçersizse:
{
"error": "Geçersiz API anahtarı.",
"status": 401
}/api/stationsİstasyonları listele, filtrele ve sırala
| Parametre | Tip | Açıklama |
|---|---|---|
city | string | Şehir adı (örn: İstanbul) |
fuel | string | Yakıt türü: Benzin, Motorin, LPG |
lat, lng | number | GPS koordinatları |
radius | number | Arama yarıçapı km (varsayılan: 50) |
sort | string | Sıralama: price, distance |
limit | number | Sonuç sayısı (max: 500) |
q | string | Metin araması |
curl -H "Authorization: Bearer YOUR_API_KEY" \ "https://ucuzyakitbul.com.tr/api/stations?city=İstanbul&fuel=Benzin&limit=5"
{
"stations": [
{
"id": "cmmon5dbs...",
"name": "Shell Kadıköy",
"brand": "Shell",
"city": "İstanbul",
"district": "Kadıköy",
"latitude": 40.9867,
"longitude": 29.0261,
"fuelPrices": [
{ "fuelType": "Benzin", "price": 60.98, "source": "EPDK" }
]
}
],
"total": 982,
"hasMore": true
}/api/stations/:idTekil istasyon detayı — fiyatlar, yorumlar, konum
| Parametre | Tip | Açıklama |
|---|---|---|
id | string | İstasyon CUID (zorunlu) |
curl -H "Authorization: Bearer YOUR_API_KEY" \ "https://ucuzyakitbul.com.tr/api/stations/cmmon5dbs0000e4mny6ki9pf2"
{
"id": "cmmon5dbs0000e4mny6ki9pf2",
"name": "Shell Kadıköy",
"brand": "Shell",
"city": "İstanbul",
"district": "Kadıköy",
"address": "Caferağa Mah. Moda Cad.",
"latitude": 40.9867,
"longitude": 29.0261,
"is24h": true,
"phone": "0216 123 45 67",
"fuelPrices": [
{ "fuelType": "Benzin", "price": 60.98 },
{ "fuelType": "Motorin", "price": 72.67 },
{ "fuelType": "LPG", "price": 29.50 }
],
"avgRating": 4.2,
"reviewCount": 15
}/api/pricesTürkiye geneli ortalama yakıt fiyatları
curl -H "Authorization: Bearer YOUR_API_KEY" \ "https://ucuzyakitbul.com.tr/api/prices"
{
"benzin": { "avg": 60.77, "min": 59.83, "max": 65.27 },
"motorin": { "avg": 72.68, "min": 71.56, "max": 78.06 },
"lpg": { "avg": 29.58, "min": 29.12, "max": 31.77 },
"updatedAt": "2026-04-10T06:00:00Z"
}| Kod | Status | Açıklama |
|---|---|---|
| 200 | OK | İstek başarılı |
| 400 | Bad Request | Geçersiz parametreler |
| 401 | Unauthorized | API key eksik veya geçersiz |
| 403 | Forbidden | Erişim engellendi |
| 429 | Too Many Requests | Rate limit aşıldı |
| 500 | Server Error | Sunucu hatası |
| Plan | Günlük Limit | Fiyat | Aşılırsa |
|---|---|---|---|
| Starter | 500 | Ücretsiz | 429 + Retry-After |
| Pro | 10.000 | ₺499/ay | 429 + Retry-After |
| Business | 100.000 | ₺1.999/ay | 429 + Retry-After |
| Enterprise | Sınırsız | İletişim | — |
curl -s -H "Authorization: Bearer YOUR_API_KEY" \ "https://ucuzyakitbul.com.tr/api/stations?city=İstanbul&fuel=Benzin&limit=5" | jq .
500 / gün istek
10.000 / gün istek
100.000 / gün istek
Sınırsız istek
Formu doldurun, 24 saat içinde API anahtarınızı email ile gönderelim.