Address Analysis
POI type classification, POI prediction
classify-poi — Address Type Classification
Classify an address into a 3-level POI category hierarchy.
curl -X POST https://api.leaper.one/v1/address/classify-poi \
-H "Authorization: Bearer sk-your-api-key" \
-H "Content-Type: application/json" \
-d '{"text": "北京市朝阳区建国路93号万达广场"}'{
"poi_category": "购物#商场#购物中心",
"status": "OK"
}The classification uses a #-separated 3-level hierarchy.
predict-poi — POI Prediction
Predict detailed POI information associated with an address and assess confidence level.
curl -X POST https://api.leaper.one/v1/address/predict-poi \
-H "Authorization: Bearer sk-your-api-key" \
-H "Content-Type: application/json" \
-d '{"text": "北京市朝阳区建国路93号万达广场"}'