beijing.anjuke.com APIbeijing.anjuke.com ↗
Access Beijing property listings, rental data, house price index, community search, and agent profiles from Anjuke via 6 structured endpoints.
curl -X GET 'https://api.parse.bot/scraper/cb9bb724-0512-4ccb-aef4-2615cefb5873/search_second_hand_listings?page=1&district=chaoyang' \ -H 'X-API-Key: $PARSE_API_KEY'
Search second-hand property listings in Beijing.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number |
| district | string | District filter path segment |
{
"type": "object",
"fields": {
"page": "string",
"listings": "array"
},
"sample": {
"data": {
"page": "1",
"listings": []
},
"status": "success"
}
}About the beijing.anjuke.com API
The Beijing Anjuke API provides access to 6 endpoints covering second-hand property listings, rentals, agent profiles, community autocomplete search, and the Beijing house price index. The get_beijing_house_price_index endpoint returns daily, weekly, and monthly price trend arrays alongside current average price and year-over-year change percentages, giving developers a structured view of Beijing's residential property market.
Listings and Rental Data
The search_second_hand_listings and search_rental_listings endpoints both accept optional page and district parameters, allowing paginated retrieval of properties filtered by Beijing district. Second-hand results return a listings array; rental results return a rentals array. To retrieve a specific property, pass a listing ID (e.g. S717424612) to get_second_hand_listing_detail, which returns the full detail record for that property.
Price Trends and Community Search
get_beijing_house_price_index takes no parameters and returns a data object containing priceInfo (current average price, monthly change, yearly change) and priceTrend (arrays of daily, weekly, and monthly price points), plus xinfangPriceInfo for new-home price data. A status field with value '0' confirms a successful response. The search_listings_by_community endpoint accepts a Chinese-language query string and returns a data array of matched entities — each with id, name, type (1=area, 2=subarea, 3=subway, 4=community), price, and address. This makes it suitable for building autocomplete or location-filter UIs.
Agent Data
search_agents requires no inputs and returns an agents array. Each agent object includes name, company, tags (specialty labels), and url (profile link). This endpoint is useful for building agent directories or lead-generation tools targeting the Beijing market.
- Track Beijing residential price movements over time using daily and monthly trend arrays from get_beijing_house_price_index
- Build a district-filtered property search UI using the district parameter on search_second_hand_listings
- Populate an autocomplete field for community or subway station selection using search_listings_by_community with Chinese-character queries
- Monitor rental market inventory in specific Beijing districts using search_rental_listings with district filtering
- Retrieve full property details for a known listing ID using get_second_hand_listing_detail
- Compile a directory of Beijing real estate agents with company affiliation and specialty tags from search_agents
- Compare new-home versus second-hand price trends using xinfangPriceInfo and priceTrend from the price index endpoint
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.