/productsÜrünleri listele
Katalogdaki ürünleri sayfalayarak döner. Bayiye kapalı ürünler listeye dahil edilmez.
Query parametreleri
| Alan | Tip | Açıklama |
|---|---|---|
category | string | Kategori kimliği ile filtreler, örn. windows-os. |
brand | string | Marka adı ile filtreler, örn. Microsoft. |
stock | string | Stok durumuna göre filtreler, örn. in_stock. |
updated_since | string | Yalnızca bu tarihten sonra değişen ürünleri döner. |
limit | integer | Sayfa başına kayıt, 1-200 arası. Varsayılan 50. |
cursor | string | Bir önceki yanıttaki next_cursor değeri. |
GET /v1/products?category=windows-os&stock=in_stock&limit=2{
"data": [
{
"sku": "MS-WIN11-PRO-RET",
"name": "Windows 11 Pro",
"brand": "Microsoft",
"category": "windows-os",
"access_type": "license",
"delivery": "instant_key",
"stock": { "state": "in_stock", "available": 412 },
"price": { "amount": 249000, "currency": "TRY" },
"updated_at": "2026-08-21T09:14:02Z"
},
{
"sku": "MS-WIN11-HOME-RET",
"name": "Windows 11 Home",
"brand": "Microsoft",
"category": "windows-os",
"access_type": "license",
"delivery": "instant_key",
"stock": { "state": "low_stock", "available": 6 },
"price": { "amount": 179000, "currency": "TRY" },
"updated_at": "2026-08-21T08:52:41Z"
}
],
"next_cursor": "eyJvIjoyfQ",
"has_more": true
}