# 🇰🇿 Kolesa.kz Kazakhstan Car Marketplace Scraper (`hipersoft/kolesa-kz-scraper`) Actor

Scrape used-car and vehicle listings from Kolesa.kz, Kazakhstan's largest auto marketplace. Paste any Kolesa.kz listing URL and export one clean row per car: title, price, specs, city, image and listing URL as JSON, CSV or Excel.

- **URL**: https://apify.com/hipersoft/kolesa-kz-scraper.md
- **Developed by:** [hiper soft](https://apify.com/hipersoft) (community)
- **Categories:** E-commerce
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.0015 / car listing scraped

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/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
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.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## 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.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## 🇰🇿 Kolesa.kz Kazakhstan Car Marketplace Scraper

Scrape **car listings from Kolesa.kz**, Kazakhstan's largest used-car and vehicle marketplace, as clean, structured **JSON, CSV, Excel or XML**. Point it at any Kolesa.kz listing page — **all cars, a single brand, or a specific city** — and it returns one tidy row per car: **title, price, specs, city, main image** and the **listing URL**. Perfect for market research, price monitoring, comparables and lead generation.

### What does Kolesa.kz Scraper do?

This actor turns Kolesa.kz listing pages into a ready-to-use dataset. Paste one or more Kolesa.kz listing URLs straight from your browser, and it walks every page of each listing and collects each car with structured fields. It works for the full catalogue, any brand and every city on Kolesa.kz — Almaty, Astana, Shymkent, Ust-Kamenogorsk and beyond — without any configuration.

### What data can you get?

**Per car:**

| Field | Description |
| --- | --- |
| `listingId` | Kolesa.kz listing reference number. |
| `title` | Listing title — usually the make and model (e.g. `Toyota Camry`), kept in its original language. |
| `price` | Price as a number. |
| `currency` | Currency code (KZT), when a price is shown. |
| `description` | Car specs line — year, body type, engine, fuel, transmission and seller notes as posted. |
| `url` | Link to the listing's page. |
| `location` | City / region of the listing. |
| `imageUrl` | Main listing image URL, when present. |
| `category` | Category path derived from the source URL (e.g. `cars/toyota`). |
| `sourceUrl` | The listing URL the car was collected from. |
| `collectedAt` | Timestamp when the row was collected. |

### Use cases

- **Market research** — map asking prices across cities, brands and model years.
- **Price monitoring** — track prices and new listings over time.
- **Comparables & valuation** — pull comparable cars by model, year and price band.
- **Lead generation** — build lists of sellers and offers for outreach.
- **Dashboards** — power reports and dashboards from clean, structured rows.
- **Automation** — feed fresh vehicle data into your own pipelines on a schedule.

### How to use it

1. Add **Kolesa.kz Kazakhstan Car Marketplace Scraper** to your Apify account and open its input.
2. Paste one or more **Start URLs** — Kolesa.kz listing pages copied from your browser (e.g. `https://kolesa.kz/cars/`, `https://kolesa.kz/cars/almaty/`, `https://kolesa.kz/cars/toyota/`).
3. Set **Max items** to cap the output.
4. Click **Run**.
5. Export the results as JSON, CSV, Excel or XML.

### Input

```json
{
  "startUrls": [
    { "url": "https://kolesa.kz/cars/" }
  ],
  "maxItems": 100
}
```

| Field | Description |
| --- | --- |
| `startUrls` | One or more Kolesa.kz listing page URLs to scrape. |
| `maxItems` | Cap the number of cars. `0` = no limit. |
| `maxConcurrency` | How many requests to run in parallel. |

### What you get

One flat JSON row per car, ready to export to CSV, Excel, JSON or XML.

```json
{
  "listingId": "214209821",
  "title": "Suzuki Grand Vitara",
  "price": 4300000,
  "currency": "KZT",
  "description": "2001 г., Б/у внедорожник, 2.5 л, газ-бензин, КПП автомат",
  "url": "https://kolesa.kz/a/show/214209821",
  "location": "Усть-Каменогорск",
  "imageUrl": "https://kolesa-photos.kcdn.online/webp/.../1-160x120.jpg",
  "category": "cars",
  "sourceUrl": "https://kolesa.kz/cars/"
}
```

### FAQ

**Which listings are covered?**
Any listing on Kolesa.kz — all cars, a single brand, or a specific city. Just paste the listing URL from your browser.

**In what language are titles returned?**
Listings are kept in their original language (Russian or Kazakh, as posted), so nothing is lost in translation.

**Does it handle pagination?**
Yes — the actor automatically walks every page of each listing up to your **Max items** limit.

**What export formats are supported?**
JSON, CSV, Excel and XML — plus the Apify API and integrations for automation.

# Actor input Schema

## `startUrls` (type: `array`):

One or more Kolesa.kz listing page URLs to scrape — copy them straight from your browser. Any listing works: all cars, a single brand, or a city (e.g. https://kolesa.kz/cars/, https://kolesa.kz/cars/almaty/, https://kolesa.kz/cars/toyota/). The scraper walks every page of each listing automatically.

## `maxItems` (type: `integer`):

Maximum number of cars to collect across all start URLs (0 = no limit; collect everything the listings return).

## `maxConcurrency` (type: `integer`):

How many requests to run in parallel. Leave at the default unless you have a reason to change it.

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

Optional proxy settings. Leave off to run directly; if results come back empty, switch on a proxy for more reliable access.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://kolesa.kz/cars/"
    }
  ],
  "maxItems": 100,
  "maxConcurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

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

The results as dataset items.

# 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 = {
    "startUrls": [
        {
            "url": "https://kolesa.kz/cars/"
        }
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("hipersoft/kolesa-kz-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 = { "startUrls": [{ "url": "https://kolesa.kz/cars/" }] }

# Run the Actor and wait for it to finish
run = client.actor("hipersoft/kolesa-kz-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 '{
  "startUrls": [
    {
      "url": "https://kolesa.kz/cars/"
    }
  ]
}' |
apify call hipersoft/kolesa-kz-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,hipersoft/kolesa-kz-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/Y1bZwhwx09zImhguD/builds/ke3wzSG1I7FDbD0lh/openapi.json
