Skip to Content
PlatformsAsia-PacificChợ Tốt Nhà

Chợ Tốt Nhà Data Parser & API

Chợ Tốt Nhà (nha.chotot.com) is Vietnam’s #2 property channel — the real-estate vertical of the country’s leading classifieds platform Chợ Tốt — and PropAPIS extracts its rental and resale listings through a single REST API. A strong complement to market leader Batdongsan, Chợ Tốt Nhà adds dense classifieds inventory, though a challenge wall has been observed.

CountryVietnam
TypeClassifieds
OwnerChợ Tốt (Carousell Group)
Listing typesrental, resale
Monthly visitsMajor #2 in Vietnam
Active listings
API accessNo public API (parse-only)
Parse priority★★★☆☆
Official sitenha.chotot.com

Platform Overview

Market Position

  • Vietnam’s #2 property channel — real-estate vertical of the Chợ Tốt classifieds platform
  • Chợ Tốt is part of Carousell Group, one of SEA’s largest classifieds operators
  • Strong complement to market leader Batdongsan.com.vn (PropertyGuru-controlled)
  • Medium anti-bot — a challenge wall has been observed (per the research report)

Market Coverage

Geographic Coverage:

  • Ho Chi Minh City and Hanoi
  • Da Nang, Can Tho, Hai Phong
  • Nationwide Vietnam coverage

Property Types:

  • Apartments (căn hộ) and houses (nhà)
  • Rooms and boarding houses (rental)
  • Land (đất) and project units

Data Availability

Chợ Tốt Nhà is high-volume classifieds inventory, strongest on rental and resale listings posted by individuals and agents (per the research report). As classifieds data, de-duplication matters; PropAPIS normalises listings and captures Vietnam-specific fields such as legal status (sổ đỏ / sổ hồng) where shown.

Data Fields Available

PropAPIS extracts structured data from each Chợ Tốt Nhà listing:

Property Information

  • Address: Ward, district and city
  • Price: Sale price or rent
  • Bedrooms and Bathrooms
  • Property Type: Apartment (căn hộ), house (nhà), land (đất)
  • Area: Floor / land area (sq m)
  • Legal Status: Sổ đỏ / sổ hồng where shown

Listing Details

  • Listing Type: Rental / resale
  • Description: Full listing text
  • Photos: Image URLs
  • Project: Development / project name where shown
  • Posted Date

Poster / Agent Information

  • Poster: Individual or agent where shown
  • Agency: Agency name where shown
  • Contact: Where published

Location Data

  • Ward and District
  • City / Province
  • Coordinates: Latitude and longitude where available

API Endpoints

Get Property Details

from propapis import PropAPIS api = PropAPIS(api_key='your_api_key') # Get a listing by URL or ID property_data = api.platforms.chotot.get_property( listing_id='12345678' ) print(f"Title: {property_data.title}") print(f"Price: VND {property_data.price:,}") print(f"Type: {property_data.property_type}") print(f"Legal: {property_data.legal_status}")

Search Listings

# Search Chợ Tốt Nhà listings listings = api.platforms.chotot.search( city='Ho Chi Minh City', purpose='for-rent', min_price=5000000, max_price=20000000, min_bedrooms=1 ) for listing in listings[:10]: print(f"{listing.title} - VND {listing.price:,}/mo") print(f" {listing.area} sqm | {listing.property_type}")

Search Resale Listings

# Search Chợ Tốt Nhà resale listings listings = api.platforms.chotot.search( city='Hanoi', purpose='for-sale', min_bedrooms=2 ) for listing in listings[:5]: print(f"{listing.title} - VND {listing.price:,}")

Quick Start

from propapis import PropAPIS api = PropAPIS(api_key='your_api_key') # Search Chợ Tốt Nhà rentals in Ho Chi Minh City listings = api.platforms.chotot.search(city='Ho Chi Minh City', purpose='for-rent') for listing in listings[:5]: print(f"{listing.title} - VND {listing.price:,}/mo")
import { PropAPIS } from 'propapis'; const api = new PropAPIS({ apiKey: 'your_api_key' }); // Search Chợ Tốt Nhà rentals in Ho Chi Minh City const listings = await api.platforms.chotot.search({ city: 'Ho Chi Minh City', purpose: 'for-rent', }); listings.slice(0, 5).forEach((l) => { console.log(`${l.title} - VND ${l.price.toLocaleString()}/mo`); });
curl "https://api.propapis.com/v1/platforms/chotot/search?city=Ho%20Chi%20Minh%20City&purpose=for-rent" \ -H "Authorization: Bearer your_api_key"

Frequently asked questions