获取 N2 深度分析结果
curl --request GET \
--url https://bptest.mapleai.cc/api/open/investor-products/deep-analysis/{task_id}/result \
--header 'Authorization: Bearer <token>'import requests
url = "https://bptest.mapleai.cc/api/open/investor-products/deep-analysis/{task_id}/result"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://bptest.mapleai.cc/api/open/investor-products/deep-analysis/{task_id}/result', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"code": 0,
"message": "操作成功",
"data": {},
"timestamp": 123
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}开放接口 / Open Investor Products
获取 N2 深度分析结果
GET
/
api
/
open
/
investor-products
/
deep-analysis
/
{task_id}
/
result
获取 N2 深度分析结果
curl --request GET \
--url https://bptest.mapleai.cc/api/open/investor-products/deep-analysis/{task_id}/result \
--header 'Authorization: Bearer <token>'import requests
url = "https://bptest.mapleai.cc/api/open/investor-products/deep-analysis/{task_id}/result"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://bptest.mapleai.cc/api/open/investor-products/deep-analysis/{task_id}/result', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"code": 0,
"message": "操作成功",
"data": {},
"timestamp": 123
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.