return to the map

Get specified POI information

Get detailed information corresponding to POI type and key value

GET
/api/pois/{type}/{key}

Path Parameters

typestring

POI type

keystring

POI unique identifier

Response Body

application/json

application/json

curl -X GET "https://loading/api/pois/junction/21"
{
  "type": "junction",
  "key": "21",
  "photos": [
    "https://example.com/photo1.jpg"
  ],
  "basincode": 3261,
  "subbasincd": "001",
  "binstrval": 0,
  "binstrlen": 3087,
  "description": "Sample POI description",
  "displayName": "Sample name",
  "descriptionEn": "Example description",
  "displayNameEn": "Example name"
}
{
  "detail": "POI not found"
}
Get specified POI information - Global Drainage Network Data Platform