v1
latestOpenAPI 3.0.02026-07-243964175.3 KBcoverage
Survey resources that intersect within an area of interest (polygon or multipolygon)
Return all survey resources that intersect with the given aoi specified in POST body.
post/aoi
Query parameters
limitinteger
Number of survey records to return.
offsetinteger
Zero-based index of first record in the result.
sortstring
Name of field to sort results by, with a prefix of "-" indicating to sort in descending order. Only one field can be specified. Default is by capture date descending.
fieldsstring
Comma separated list of survey fields to include in the response. Default is all fields.
Request body
Example request
{
"until": "2024-01-01",
"since": "2023-01-01",
"resources": "tiles:Vert",
"mode": "all",
"aoi": {
"type": "Polygon",
"coordinates": [
[
[
151.1675,
-33.89072
],
[
151.1676,
-33.89151
],
[
151.16803,
-33.89147
],
[
151.16796,
-33.89109
],
[
151.16794,
-33.89074
],
[
151.16787,
-33.89068
],
[
151.1675,
-33.89072
]
]
]
},
"include": "disaster:flood,disaster:hurricane",
"exclude": "disaster:flood,disaster:hurricane"
}Response
Survey resources matching criteria
Example response
{
"surveys": [
{
"tags": {
"postCatEventType": "hurricane",
"postCatEventName": "Hurricane Idalia",
"postCatEventDate": "2023-08-30"
}
}
]
}