Letgo.com Scraper - Products & Categories avatar
Letgo.com Scraper - Products & Categories

Pricing

$10.00/month + usage

Go to Apify Store
Letgo.com Scraper - Products & Categories

Letgo.com Scraper - Products & Categories

Developed by

Voyn Software

Voyn Software

Maintained by Community

Scrape Letgo product or category pages. Auto-detects URL type, infinite-scrolls lists, and extracts title, price (TL), description, posted date, location, gallery images, seller info, and specs.

5.0 (1)

Pricing

$10.00/month + usage

0

1

1

Last modified

12 hours ago

Letgo.com Scraper (Apify + Playwright)

A production-ready Letgo.com scraper that extracts listing details from Letgo product pages and search/category pages. This Actor does not rely on any official Letgo API (none is publicly provided); instead, it automates a headless browser to collect data reliably. Throughout this README we’ll refer to it generically as a Letgo scraper / Letgo.com scraper and sometimes “Letgo API” or “Letgo.com API” as shorthand for the data the Actor produces.


What it does

  • Accepts either:
    • Product URL (e.g., https://www.letgo.com/item/...) → scrapes that single item
    • List/Search/Category URL (e.g., https://www.letgo.com/telefon_c15000?...) → opens the page, infinite-scrolls, collects product links, then visits each one (up to maxItems)
  • Extracts clean, structured data:
    • title
    • url (product page link)
    • price (numeric)
    • priceText (original text, e.g. 39.500 TL)
    • currency (always "TL")
    • description (from JSON-LD or inline page data)
    • location
    • postedAt (e.g., 10 Eki 2025)
    • images (from product thumbnail gallery only)
    • sellerName (from the visible seller section)
    • sellerProfileUrl (absolute URL)
    • İlan Özellikleri:
      • ilanOzellikleri (object with label → value)
      • Flattened columns with attr_ prefix, e.g. attr_ilan_no, attr_model, attr_hafiza, attr_renk, attr_pil_sagligi_pct, attr_garanti, attr_durum

The Actor includes Unicode normalization and forced Turkish language headers so characters like Ç, Ş, İ, ğ, ü are preserved (avoids “??” corruption when exporting).


Example Input

{
"title": "Letgo Scraper",
"type": "object",
"schemaVersion": 1,
"properties": {
"startUrls": {
"title": "Start URLs (list or product)",
"type": "array",
"description": "List of Letgo URLs to start from. Each URL can be a search/category page or a direct product page.",
"editor": "requestListSources",
"prefill": [
{ "url": "https://www.letgo.com/telefon_c15000?son=24-saat" }
]
},
"maxItems": {
"title": "Max items",
"type": "integer",
"description": "Maximum number of products to scrape across all pages.",
"minimum": 1,
"default": 50
},
"proxyConfiguration": {
"title": "Proxy configuration",
"type": "object",
"description": "Proxy settings if you want to run via Apify Proxy or your own proxy.",
"editor": "proxy"
}
},
"required": ["startUrls"]
}

Example Output

{
"title": "İphone 14 Pro Max 256 GB - 15 Ay Garantili TR Cihazı | Türkiye'deki İkinci El Eşyaları Al & Sat - Letgo",
"url": "https://www.letgo.com/item/iphone-14-pro-max-256-gb---15-ay-garantili-tr-cihaz-iid-1718301401",
"price": 44500,
"priceText": "44.500 TL",
"currency": "TL",
"categoryPath": "Telefon,iPhone iOS Telefon",
"description": "⭐ O5O1 535 69 O2 ⭐ Cihaz Tertemiz - Tamir Görmemiş - Çalışmayan Bir Akşamı Yok - Teknosa'dan Alınmış 15 Ay Daha Garantisş Var - TAKAS YOK",
"location": "İstanbul, Türkiye",
"postedAt": "10 Eki 2025",
"images": [
"https://imvm.letgo.com/v1/files/f42f1b89126e4-OLXAUTOTR/image;s=100x100",
"https://imvm.letgo.com/v1/files/28ace67c28414-OLXAUTOTR/image;s=100x100"
],
"sellerName": "XXXX XXXX",
"sellerProfileUrl": "https://www.letgo.com/profil/00000000",
"ilanOzellikleri": {
"İlan No": "1718301401",
"Model": "iPhone 14 Pro Max",
"Hafıza": "256 GB",
"Renk": "Mor",
"Pil Sağlığı (%)": "%100 - %90 (Çok İyi)",
"Garanti": "Distribütör Garantili",
"Durum": "Yeni"
},
"attr_ilan_no": "1718301401",
"attr_model": "iPhone 14 Pro Max",
"attr_hafiza": "256 GB",
"attr_renk": "Mor",
"attr_pil_sagligi_pct": "%100 - %90 (Çok İyi)",
"attr_garanti": "Distribütör Garantili",
"attr_durum": "Yeni"
}