获取节点列表API 📜
简介
本API允许用户获取节点列表。🌐
接口信息
- URL:
/GetNodelist - 方法:
GET🔍
请求参数
| 参数名 | 说明 | 必填 | 数据类型 | 范围/示例 |
|---|---|---|---|---|
| - | - | - | - | - |
请求示例
python
import requests
def NetWorkLink(link, data=None):
headers = {"Content-Type": "application/json"}
try:
response = requests.get(f"https://api.stellarfrp.top/{link}", json=data, headers=headers)
return response
except Exception as e:
print(e)
return e
response = NetWorkLink("GetNodelist")
print(response.json())