# Arabam Scraper — Turkey Used Car Listings & Prices (`logiover/arabam-turkey-car-scraper`) Actor

Scrape Arabam.com, Turkey's largest used car marketplace. Extract make, model year, mileage, price in lira, fuel type, transmission, drive configuration, condition and photos across cars, SUVs, motorcycles and commercial vehicles. No API key, no login.

- **URL**: https://apify.com/logiover/arabam-turkey-car-scraper.md
- **Developed by:** [Logiover](https://apify.com/logiover) (community)
- **Categories:** E-commerce
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.50 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Arabam Scraper — Turkey Used Car Listings & Prices

Turkey's largest used car marketplace in rows: make, model year, mileage, price in lira, fuel type and transmission — all typed, none of it guessed from a headline.

### What does the Arabam Scraper do?

This Actor collects live listings from **Arabam.com**, the marketplace Turkey buys and sells used cars on. Every result page publishes its listings as structured Vehicle records, which is unusually complete for a classifieds site: mileage, transmission, drive configuration and model year all arrive typed rather than as text to be parsed out of a title.

The site answers a plain HTTP client with a challenge page rather than the listings, so requests here carry a real Chrome TLS fingerprint over a Turkish residential exit. That is the difference between a run that returns cars and one that returns an interstitial.

### Who is it for?

- **Car exporters and dealers** — Turkey is a large, fast-moving used vehicle market.
- **Pricing analysts and residual-value modellers** who need year, mileage and price on one row.
- **Insurers and lenders** benchmarking vehicle values.
- **Marketplace operators** seeding or benchmarking inventory.
- **Researchers** tracking Turkey's shift to hybrid and electric vehicles.

### Use cases

- Build a price curve for a model by year and mileage band, then price your own stock against it.
- Track lira prices weekly in a market where inflation moves them fast.
- Measure the diesel, petrol, hybrid and electric mix as it changes.
- Compare manual against automatic pricing at the same age and mileage.
- Watch a single model's average asking price to time a purchase.
- Feed an AI agent live Turkish car prices for valuation questions.

### Why use this Arabam Scraper?

- **Typed vehicle fields** — mileage and year come as numbers, not as strings pulled from a title.
- **The site's challenge handled** with a real browser TLS fingerprint, not a retry loop that never succeeds.
- **Every core field at 100% fill**: make, model year, mileage, price, fuel type and transmission.
- **Cars, SUVs, motorcycles and commercial vehicles** from the same Actor.
- **Year and price filters** applied at the source rather than after the fact.
- **Keyless and login-free** — nothing to register, nothing to rotate.

### What data can you extract?

One row per car. Anything the source left blank comes back as `null`.

| Field | Type | Description |
|---|---|---|
| `listingId` | string | Arabam listing identifier |
| `url` | string | Direct link to the listing |
| `title` | string | Listing headline as the seller wrote it |
| `make` | string | Manufacturer |
| `modelYear` | number | Model year |
| `mileageKm` | number | Odometer reading in kilometres |
| `price` | number | Asking price in Turkish lira |
| `currency` | string | Currency, normally TRY |
| `fuelType` | string | Fuel type in Turkish, e.g. Dizel, Benzin, Hibrit |
| `transmission` | string | Transmission, e.g. Düz (manual) or Otomatik |
| `driveType` | string | Drive configuration as published |
| `condition` | string | Condition, normally UsedCondition |
| `imageUrl` | string | Listing photo |
| `scrapedAt` | string | When this row was collected |

#### Sample output

```json
{
  "listingId": "42763215",
  "url": "https://www.arabam.com/ilan/galeriden-satilik-ford-fiesta-1-4-tdci-titanium-x/ford-fiesta-1-4-tdci-titanium...",
  "title": "FORD FİESTA 1.4 TDCİ TİTANİUM DEĞİŞENSİZ / BORDO GÖĞÜS / MASRAFSIZ / TEMİZ AİLE ARACI",
  "make": "Ford",
  "modelYear": 2010,
  "mileageKm": 267000,
  "price": 560000,
  "currency": "TRY",
  "fuelType": "Dizel",
  "transmission": "Düz",
  "driveType": "Önden Çekiş",
  "condition": "UsedCondition",
  "imageUrl": "https://arbstorage.mncdn.com/ilanfotograflari/2026/08/11/42763215/07399d97-7814-4ba6-9e87-6fa2b15b12ca_imag...",
  "scrapedAt": "2026-08-16T16:56:32.725Z"
}
```

### How to use the Arabam Scraper

#### Option A — the whole used car market

Keep the default category path and set a result limit. Sorted as the site presents them, this gives a rolling picture of what is on sale.

#### Option B — a segment

Add a minimum model year and a maximum price to isolate a band — 2018 and newer under 1,500,000 lira, for instance.

#### Option C — another vehicle type

Switch the category path to `ikinci-el/arazi-suv-pickup`, `ikinci-el/motosiklet` or `ikinci-el/minivan-panelvan`.

### Input parameters

| Input | Type | Description |
|---|---|---|
| `categoryPath` | string | Arabam category path as it appears after arabam.com/ in the URL, e.g. ikinci-el/otomobil, ikinci-el/arazi-suv-pickup, ikinci-el/motosiklet, ikinci-el/minivan-panelvan. Default: `"ikinci-el/otomobil"`. |
| `minYear` | integer | Optional earliest model year. |
| `maxPrice` | integer | Optional upper price bound in Turkish lira. |
| `maxResults` | integer | Stop after this many listings. Each page returns 20. Default: `1000`. |
| `proxyConfiguration` | object | Arabam serves Turkish exits and answers plain HTTP clients with a challenge, so a Chrome TLS fingerprint is used over a Turkish residential proxy. |

### Tips for best results

- Turkish inflation makes a price series meaningless without its date; `scrapedAt` is on every row for that reason.
- Fuel and transmission values come back in Turkish as published — `Dizel`, `Benzin`, `Hibrit`, `Düz`, `Otomatik`.
- The category path is everything after arabam.com/ in the URL, including the `ikinci-el/` prefix.
- This Actor needs a Turkish residential exit; the default proxy configuration already pins it.
- Run daily rather than hourly — listings are bumped, not repriced, minute to minute.

### Integrations

Connect this Actor to Make, Zapier, n8n, Slack, Google Sheets, GitHub, Airtable or any HTTP endpoint through Apify integrations. Every finished run can push its dataset straight into your warehouse, or fire a webhook so a downstream job starts the moment the data lands.

### API usage

Run the Actor from your own code with the Apify API. Datasets can be exported as JSON, CSV, Excel, XML, RSS or HTML, and every run is available through the [Apify API reference](https://docs.apify.com/api/v2).

```bash
curl -X POST "https://api.apify.com/v2/acts/logiover~arabam-turkey-car-scraper/runs?token=YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"input": {"categoryPath": "ikinci-el/otomobil", "maxResults": 1000, "proxyConfiguration": {"useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"], "apifyProxyCountry": "TR"}}}'
```

Python, JavaScript, PHP and CLI clients are documented under [Apify API clients](https://docs.apify.com/api/client).

### Use with AI agents (MCP)

This Actor is callable from any MCP-compatible client — Claude, Cursor, VS Code or your own agent — through the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp). An agent can call it to answer live questions about Turkish used car prices, mileage and model-year distribution instead of guessing from stale training data.

### FAQ

#### Do I need an Arabam account or API key?

No. The Actor reads public listings with no login and no key.

#### Why does a normal HTTP scraper fail on Arabam?

The site answers plain clients with a challenge page instead of the listings. This Actor uses a real Chrome TLS fingerprint, which is what gets the listing markup.

#### How many cars can one run return?

Each page carries 20 and the site holds hundreds of thousands of listings, so the practical limit is the result cap you set.

#### What currency are prices in?

Turkish lira (TRY), as published.

#### Can I get the seller's phone number?

No. Arabam keeps contact behind its own flow, and this Actor does not attempt to reach it.

#### Are motorcycles and commercial vehicles supported?

Yes — switch the category path, e.g. `ikinci-el/motosiklet` or `ikinci-el/minivan-panelvan`.

#### Why did my run return zero listings?

Usually a category path missing the `ikinci-el/` prefix. Copy it from an Arabam URL.

#### Is the data in Turkish?

Yes. Titles, fuel types and transmission values are published in Turkish and collected as written.

#### Can I export to CSV or Excel?

Yes. Every run's dataset exports as JSON, CSV, Excel, XML, RSS or HTML from the Storage tab, the API, or automatically through an integration.

#### How fresh is the data?

Every run reads the site live at that moment, so the data is as fresh as the site itself. Schedule the Actor hourly, daily or weekly to build a time series.

#### How often is the Actor updated?

It is monitored and fixed when the site changes its markup or its endpoints. Report anything that looks wrong through the Issues tab and it gets picked up.

### Is it legal to scrape Arabam?

This Actor collects only publicly available information — the same pages any visitor can open without logging in. It does not bypass a login, and it does not touch private or personal accounts. Public data collection is legal in most jurisdictions, but how you *use* the data is your responsibility: if any record contains personal data, GDPR and comparable laws still apply, and you need a lawful basis for processing it. When in doubt, take legal advice. See Apify's [ethical web scraping](https://blog.apify.com/what-is-ethical-web-scraping-and-how-do-you-do-it/) guide.

### Related scrapers

- [Encar Scraper](https://apify.com/logiover/encar-korea-used-car-scraper) — South Korean used cars.
- [Coches.net Scraper](https://apify.com/logiover/coches-net-scraper) — Spanish used cars with dealer phones.
- [Otomoto Scraper](https://apify.com/logiover/otomoto-scraper) — Polish used cars.
- [Kolesa.kz Scraper](https://apify.com/logiover/kolesa-kz-scraper) — Kazakh used cars.
- [Hepsiburada Scraper](https://apify.com/logiover/hepsiburada-product-scraper) — Turkish marketplace prices.

# Actor input Schema

## `categoryPath` (type: `string`):

Arabam category path as it appears after arabam.com/ in the URL, e.g. ikinci-el/otomobil, ikinci-el/arazi-suv-pickup, ikinci-el/motosiklet, ikinci-el/minivan-panelvan.

## `minYear` (type: `integer`):

Optional earliest model year.

## `maxPrice` (type: `integer`):

Optional upper price bound in Turkish lira.

## `maxResults` (type: `integer`):

Stop after this many listings. Each page returns 20.

## `proxyConfiguration` (type: `object`):

Arabam serves Turkish exits and answers plain HTTP clients with a challenge, so a Chrome TLS fingerprint is used over a Turkish residential proxy.

## Actor input object example

```json
{
  "categoryPath": "ikinci-el/otomobil",
  "maxResults": 1000,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "TR"
  }
}
```

# Actor output Schema

## `results` (type: `string`):

Every record collected in this run. Open the Dataset tab to browse, filter or export as JSON, CSV or Excel.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "categoryPath": "ikinci-el/otomobil",
    "maxResults": 1000,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "TR"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("logiover/arabam-turkey-car-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "categoryPath": "ikinci-el/otomobil",
    "maxResults": 1000,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "TR",
    },
}

# Run the Actor and wait for it to finish
run = client.actor("logiover/arabam-turkey-car-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "categoryPath": "ikinci-el/otomobil",
  "maxResults": 1000,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "TR"
  }
}' |
apify call logiover/arabam-turkey-car-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,logiover/arabam-turkey-car-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/Qn9sfefMvGmOPeb1Y/builds/wFrB2dqd01gXlEoQl/openapi.json
