API 调试面板 - 高德地图接口

API接口总览: API.DSci.AI
邮箱: [email protected]

调用接口:/free/amap

请求 URL:
等待提交...
返回结果:
等待提交...

Python 调用示例

import requests

url = "https://api.dsci.ai/free/amap"
params = {
    "key": "你的Key",
    "id": "地点ID"
}

response = requests.post(url, params=params)

if response.status_code == 200:
    print("返回结果:")
    print(response.json())
else:
    print("请求失败:", response.text)