POST WEvalQuery/GetCommunityPriceStat
根据经纬度 + 半径,获取范围内小区价格统计(均价/最高/最低/中位数)
Request Information
URI Parameters
None.
Body Parameters
CommunityPriceRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Location |
坐标:114.1111,30.1111 |
string |
None. |
| Radius |
半径:单位米 |
integer |
None. |
| Type |
物业类型:住宅,办公等 |
string |
None. |
| StartDate |
起始日期:不填默认一年 |
date |
None. |
Request Formats
application/json, text/json
Sample:
{
"Location": "sample string 1",
"Radius": 2,
"Type": "sample string 3",
"StartDate": "2026-06-02T20:31:15.9269162+08:00"
}
application/xml, text/xml
Sample:
<CommunityPriceRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Eaglet.Entity.Pattern.Query"> <Location>sample string 1</Location> <Radius>2</Radius> <StartDate>2026-06-02T20:31:15.9269162+08:00</StartDate> <Type>sample string 3</Type> </CommunityPriceRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
RemoteResponseOfCommunityPriceResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| errors | string |
None. |
|
| unauthed | boolean |
None. |
|
| result | CommunityPriceResponse |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"errors": "sample string 2",
"unauthed": true,
"result": {
"Residentials": [
"sample string 1",
"sample string 2"
],
"ResultPrice": [
1.1,
2.1
]
}
}
application/xml, text/xml
Sample:
<RemoteResponseOfCommunityPriceResponseNCcew9g6 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GJ.Biz.Model">
<Errors>sample string 2</Errors>
<Result xmlns:d2p1="http://schemas.datacontract.org/2004/07/Eaglet.Entity.Pattern.Query">
<d2p1:Residentials xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:string>sample string 1</d3p1:string>
<d3p1:string>sample string 2</d3p1:string>
</d2p1:Residentials>
<d2p1:ResultPrice xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:double>1.1</d3p1:double>
<d3p1:double>2.1</d3p1:double>
</d2p1:ResultPrice>
</Result>
<Success>true</Success>
<UnAuthorizedRequest>true</UnAuthorizedRequest>
</RemoteResponseOfCommunityPriceResponseNCcew9g6>