v1
latestOpenAPI 3.0.02026-07-243964175.3 KBnew transaction
Return the surveys intersecting/overlapping the parcel boundary (based off address)
Return the surveys intersecting/overlapping the parcel boundary (based off address). The caller has the option of passing the following parameter combinations:
- country + address
- country + streetAddress + state + postcode + city
- country + Address ID (GNAF ID for Australia)
If country + Address ID is provided any address parameters will be ignored.
post/tx/address
Query parameters
limitinteger
Limit the number of surveys in the result. Default is 20, Maximum is 1000.
sort'captureDate' | 'location' | 'firstPhotoTime' | 'lastPhotoTime' | 'pixelSize' | 'timezone' | 'utcOffset' | 'onlineTime'
The field by which to sort the surveys. Only one field can be specified. If this parameter is not used in the URL request, then the surveys are sorted by captureDate in descending order.
offsetinteger
Zero-based index of first record in the result.
Request body
Example request
{
"address": "1 Foo St, Testville, CO, 12345",
"addressId": "GAQLD155997576",
"country": "US",
"streetAddress": "1 foo st",
"city": "seattle",
"postcode": "123456",
"state": "WA",
"resources": "raster:Vert,raster:TrueOrtho,aiPacks:roof_objects",
"dates": "all",
"overlap": "all"
}Response
Surveys returned that match parcel boundary for given address
Example response
{
"surveys": [
{
"tags": {
"postCatEventType": "hurricane",
"postCatEventName": "Hurricane Idalia",
"postCatEventDate": "2023-08-30"
}
}
]
}