# Kaidee.com Scraper - Thailand Classifieds (`fervent_bus/kaidee-scraper`) Actor

Extract classified listings from Kaidee.com, Thailands leading marketplace. Get electronics, vehicles, property, jobs, and more.

- **URL**: https://apify.com/fervent\_bus/kaidee-scraper.md
- **Developed by:** [Archit Khurana](https://apify.com/fervent_bus) (community)
- **Categories:** E-commerce
- **Stats:** 2 total users, 1 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

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

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

## Kaidee.com Scraper - Thailand Classifieds

Extract classified listings from Kaidee.com, Thailand's leading online marketplace. Get data on electronics, vehicles, property, jobs, services, and more.

### Features

- 🔍 **Flexible Search**: Search by keywords, category, or location
- 📊 **Comprehensive Data**: 10 output fields including title, price, location, seller
- 🌏 **Thailand Coverage**: All provinces and cities
- 🤖 **AI-Ready**: Perfect for Claude, ChatGPT, and MCP agents analyzing Thai market data

### What You Get

- Listing title and full description
- Price in Thai Baht (THB)
- Location (province/city)
- Category
- Seller information
- Posted date
- High-quality images
- Direct listing URLs

### Use Cases

- **Market Research**: Analyze pricing trends across Thailand
- **Price Monitoring**: Track electronics, vehicles, property prices
- **Competitive Intelligence**: Monitor competitor listings
- **Lead Generation**: Find business opportunities
- **Data Analysis**: Study Thai consumer behavior

### Input Parameters

| Field | Type | Description | Example |
|-------|------|-------------|---------|
| searchQuery | string | Search keywords | `"laptop"` |
| category | select | Browse specific category | `"electronics"` |
| location | string | Filter by province/city | `"Bangkok"` |
| maxResults | integer | Max items to scrape (1-500) | `50` |

### Example Input

```json
{
  "searchQuery": "laptop",
  "location": "Bangkok",
  "maxResults": 50,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": ["RESIDENTIAL"]
  }
}
```

### Example Output

```json
{
  "url": "https://www.kaidee.com/item/12345",
  "title": "MacBook Pro 16-inch M1 Max",
  "description": "Excellent condition, 1 year warranty...",
  "price": "฿85,000",
  "location": "Bangkok",
  "category": "Electronics",
  "imageUrl": "https://cdn.kaidee.com/...",
  "seller": "Tech Store BKK",
  "postedDate": "2026-09-10",
  "scrapedAt": "2026-09-16T16:00:00Z"
}
```

### AI Agent Queries This Actor Answers

- *"Find the cheapest used cars in Bangkok"*
- *"What are current laptop prices in Thailand?"*
- *"Show me available apartments in Chiang Mai"*
- *"Monitor iPhone listings in Phuket"*
- *"Get all electronics under 10,000 THB"*
- *"Find job postings for software developers"*
- *"Analyze vehicle pricing trends across Thailand"*
- *"Extract property listings in tourist areas"*

### Technical Details

- **Next.js Extraction**: Optimized for **NEXT\_DATA** parsing
- **Anti-Bot Protection**: Uses Camoufox with geolocation
- **Residential Proxies**: Recommended for reliable access
- **Rate Limiting**: Respectful scraping with delays

### Performance

- \~60 items/minute
- \~1.5 compute units per 100 items
- Residential proxy recommended ($0.50-1.00 per run)

### Support & Issues

Report issues on [GitHub](https://github.com/roshtarg-cpu/kaidee-scraper)

### Tags

`thailand` `classifieds` `marketplace` `kaidee` `e-commerce` `scraping` `ai-agent` `mcp` `claude` `chatgpt` `bangkok` `thai-market`

# Actor input Schema

## `searchQuery` (type: `string`):

Search for specific items or keywords

## `category` (type: `string`):

Browse specific category

## `location` (type: `string`):

Filter by province or city in Thailand

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

Maximum number of listings to scrape

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

Apify proxy settings

## Actor input object example

```json
{
  "searchQuery": "laptop",
  "category": "electronics",
  "location": "Bangkok",
  "maxResults": 3,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# Actor output Schema

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

No description

# 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 = {
    "searchQuery": "laptop",
    "category": "electronics",
    "location": "Bangkok",
    "maxResults": 3,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("fervent_bus/kaidee-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 = {
    "searchQuery": "laptop",
    "category": "electronics",
    "location": "Bangkok",
    "maxResults": 3,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("fervent_bus/kaidee-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 '{
  "searchQuery": "laptop",
  "category": "electronics",
  "location": "Bangkok",
  "maxResults": 3,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call fervent_bus/kaidee-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,fervent_bus/kaidee-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/giR0cFiu2YuHPRTVZ/builds/Mnr3aroO1BExg7IMu/openapi.json
