获取 N1 打标结果
curl --request GET \
--url https://bptest.mapleai.cc/api/acture/labeling/{run_id}/result \
--header 'Authorization: Bearer <token>'import requests
url = "https://bptest.mapleai.cc/api/acture/labeling/{run_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/acture/labeling/{run_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>"
}
]
}Acture Labeling
获取 N1 打标结果
获取打标结果。
GET
/
api
/
acture
/
labeling
/
{run_id}
/
result
获取 N1 打标结果
curl --request GET \
--url https://bptest.mapleai.cc/api/acture/labeling/{run_id}/result \
--header 'Authorization: Bearer <token>'import requests
url = "https://bptest.mapleai.cc/api/acture/labeling/{run_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/acture/labeling/{run_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.