Discover/58.com Housing API
live

58.com Housing APIdq.58.com

Access house price trends and new property developments across 31+ Chinese cities via the 58.com Housing API. City, district, and community-level data.

Endpoints
4
Updated
14d ago
Try it
City subdomain prefix (e.g., 'bj' for Beijing, 'sh' for Shanghai, 'dq' for Daqing) or city
Price trend granularity. Accepted values: 'city', 'district', 'community', 'shangquan'.
Area/district ID for sub-city level trends. Required when level is 'district', 'community'
api.parse.bot/scraper/dcf3cd6f-9e97-4bb0-8055-fbb97a13ff10/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/dcf3cd6f-9e97-4bb0-8055-fbb97a13ff10/house_price_trends?city=bj' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 4 totalclick to expand

Get house price trends for a city or district. Returns current average prices (yuan/sqm) and historical price trends (daily, weekly, monthly) for both second-hand housing and new housing. Supports city-level, district-level, community-level, and business district (shangquan) level data.

Input
ParamTypeDescription
citystringCity subdomain prefix (e.g., 'bj' for Beijing, 'sh' for Shanghai, 'dq' for Daqing) or city_id number. Use the city_list endpoint for supported cities.
levelstringPrice trend granularity. Accepted values: 'city', 'district', 'community', 'shangquan'.
area_idstringArea/district ID for sub-city level trends. Required when level is 'district', 'community', or 'shangquan'.
Response
{
  "type": "object",
  "fields": {
    "level": "string — granularity level used for the query",
    "city_id": "integer — numeric city identifier",
    "location": "object with lat and lng string coordinates",
    "city_name": "string — Chinese city name",
    "market_url": "string — URL to the full market page",
    "price_trends": "object with daily, weekly, monthly arrays of {date, price} entries",
    "new_housing_price": "object with month, avg_price_per_sqm, month_change_pct, year_change_pct, description",
    "second_hand_price": "object with month, avg_price_per_sqm, month_change_pct, year_change_pct"
  },
  "sample": {
    "data": {
      "level": "city",
      "city_id": 1,
      "location": {
        "lat": "39.911321",
        "lng": "116.414814"
      },
      "city_name": "北京",
      "market_url": "https://bj.58.com/fangjia/",
      "price_trends": {
        "daily": [
          {
            "date": "05-06",
            "price": "37752"
          }
        ],
        "weekly": [
          {
            "date": "05-07",
            "price": "37753"
          }
        ],
        "monthly": [
          {
            "date": "26-05",
            "price": "37752"
          }
        ]
      },
      "new_housing_price": {
        "month": "4",
        "description": "4月成交均价",
        "year_change_pct": "2.13",
        "month_change_pct": "0",
        "avg_price_per_sqm": "50356"
      },
      "second_hand_price": {
        "month": "5",
        "year_change_pct": "-12.85",
        "month_change_pct": "-0.08",
        "avg_price_per_sqm": "37752"
      }
    },
    "status": "success"
  }
}

About the 58.com Housing API

The 58.com Housing API exposes housing market data from 58同城, China's largest classifieds platform, across 4 endpoints covering city listings, price trends, and new property developments. The house_price_trends endpoint returns average prices in yuan per square meter with daily, weekly, and monthly historical series for both new and second-hand housing, queryable down to the community or business-district level across 31+ major Chinese cities.

What the API Covers

The API surfaces housing market data from 58.com (58同城) across four endpoints. city_list returns all supported cities with their numeric city_id, subdomain prefix, and URL — the starting point for every other call. house_price_trends accepts a city parameter (subdomain like bj or numeric city_id) and an optional level value (city, district, community, or shangquan) to scope results. The response includes price_trends with daily, weekly, and monthly arrays of {date, price} pairs, plus separate new_housing_price and second_hand_price objects that each carry avg_price_per_sqm, month_change_pct, and year_change_pct.

New Property Developments

hot_new_properties returns promoted new housing developments (楼盘) for a city, optionally filtered by region_id or shangquan_id. Each property object in the properties array includes loupan_id, name, region, sub_region, price, price_unit, activity, follow_count, and a has_panoramic_view flag. nearby_new_developments takes a community_id (required) plus optional latitude/longitude coordinates and a limit parameter, and returns an array of developments with floor plans, tags, sale status, contact numbers, and coordinates.

Geo and ID Lookup

Sub-city queries require an area_id for house_price_trends and a community_id for nearby_new_developments. The city_list endpoint provides the subdomain-to-ID mapping. Coordinates from the house_price_trends response (location.lat, location.lng) can be passed directly into nearby_new_developments for location-anchored queries. City names and market URLs are returned in Chinese.

Common use cases
  • Track monthly average price per sqm trends for second-hand housing in Beijing and Shanghai to monitor market movement.
  • Compare year-over-year price changes across multiple cities using year_change_pct from house_price_trends.
  • Identify promoted new property developments in a target district by filtering hot_new_properties with region_id.
  • Build a neighborhood comparison tool by querying house_price_trends at community level for multiple area_id values.
  • Find new developments near a specific community using nearby_new_developments with community_id and coordinate inputs.
  • Power a city-selector UI by enumerating supported markets from city_list with their subdomain and numeric IDs.
  • Monitor follow_count on new developments in hot_new_properties to gauge buyer interest over time.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does 58.com offer an official developer API for housing data?+
58.com does not publish a general-purpose public developer API for its housing market or property listing data. There is no documented REST or GraphQL interface available for third-party use.
What does `house_price_trends` return and how granular can queries get?+
The endpoint returns price_trends with daily, weekly, and monthly {date, price} arrays, plus new_housing_price and second_hand_price objects each containing avg_price_per_sqm, month_change_pct, and year_change_pct. Granularity is controlled by the level parameter: city, district, community, or shangquan (business district). Sub-city levels require an area_id; use the city_list endpoint to resolve city identifiers first.
Does the API cover rental listings or only purchase (sale) housing data?+
The current endpoints focus on purchase market data — average sale prices per sqm, new housing developments, and price trend series. Rental listing data is not exposed. You can fork this API on Parse and revise it to add a rental-focused endpoint if that coverage is needed.
Are all 31+ cities available for sub-district and community-level price trends?+
City-level trends are available for all supported cities returned by city_list. Sub-city granularity (district, community, shangquan) depends on whether 58.com publishes that breakdown for a given city — smaller cities may only have city-level data. The area_id values needed for sub-city queries must be looked up via house_price_trends or related search results, as there is no standalone area-directory endpoint. You can fork this API on Parse and revise it to add an area lookup endpoint for systematic sub-city ID discovery.
What property detail fields does `nearby_new_developments` return compared to `hot_new_properties`?+
nearby_new_developments returns richer per-development detail: floor plans, tags, sale status, contact phone numbers, and coordinates. hot_new_properties is oriented toward promoted listings and includes activity/promotion info, follow_count, and a has_panoramic_view flag alongside basic price and location fields. Neither endpoint currently returns individual unit-level listings or historical transaction records for specific developments.
Page content last updated . Spec covers 4 endpoints from dq.58.com.
Related APIs in Real EstateSee all →
idealista.pt API
Search and filter property listings across Portugal by location, price, and size, then access detailed information about each property including its characteristics and pricing history. Monitor how property prices change over time to help you make informed decisions about buying or selling real estate.
cookcountyil.gov API
Search Cook County property tax records, look up court cases, find code violations, and get department contact information all in one place. Quickly access public records and government contacts without navigating multiple websites.
amberstudent.com API
Search student accommodation listings across popular cities and access comprehensive property information including room types, pricing trends, and tenant reviews. Get detailed insights into student housing options to compare amenities, prices, and community feedback all in one place.
immobiliare.it API
Search Italian property listings for sale or rent, browse real estate agencies, and explore price trends across Italian cities — all via immobiliare.it.
homes.com API
Search for real estate agents and properties available for sale or rent, while accessing detailed agent profiles with their 1-year transaction history, active listings, and performance statistics. Get comprehensive property details and agent information all in one place to help you find the right agent or property that matches your needs.
beijing.anjuke.com API
Search Beijing real estate listings for second-hand homes and rentals, view detailed property information and price trends, and discover agents and community-specific listings. Get access to the Beijing house price index to track market movements and make informed decisions about property purchases or rentals.
zapimoveis.com.br API
Search and filter real estate listings across Brazil on ZAP Imóveis — the country's largest property portal. Retrieve listings for sale or rent with detailed attributes including price, location, size, bedrooms, bathrooms, parking, and amenities. Supports location autocomplete, property type discovery, and full listing detail retrieval.
m.olx.ro API
Search and retrieve structured real estate listings from OLX Romania, including apartments, houses, land, and other properties with detailed information. Access category IDs and browse available properties by type to find what you're looking for on Romania's popular classifieds platform.