Please update to the latest patch version to use it.
POST /api/v2/browser-profile/list
Description: Query the information of created profiles, such as proxy information and proxy ID.
Optional Query parameters can be omitted.
Name | Type | Necessary | Default | Example | Description |
---|---|---|---|---|---|
group_id | text | NO | - | 1001 | Query by group ID. If empty, system will search all groups |
profile_id | list | NO | - | ["h1yynkm","h1yynks","h1yynkd"] | Query by profile ID |
profile_no | list | NO | - | ["123","124","125"] | Query by profile No. |
sort_type | text | NO | profile_no | profile_no | The results returned by the query account can be sorted by the specified type, profile_no by default. Support type: profile_no, last_open_time, created_time. |
sort_order | text | NO | desc | desc | Default: desc. asc means ascending, desc means descending. |
page | NO | 1 | 1 | Query by page number, default setting: 1 | |
limit | NO | 1 | 50 | How many profiles are queried for 1 page; Default setting: 1/page, range 1~100. |
//Operation succeeded
{
"data": {
"list": [
{
"name": "", //profile name
"created_time": "1744185096", //profile created time, timestamp format
"ip": "",
"ip_country": "",
"password": "", //platform password
"fbcc_proxy_acc_id": "", //"proxy_id"
"user_proxy_config": {
"proxy_soft": "no_proxy"
}, //proxy
"ipchecker": "ipapi", //IP checker
"fakey": "",
"group_id": "xxx", //group ID
"group_name": "xxx", //group name
"remark": "", //profile remark
"last_open_time": "0", //laste opend time, timestamp format
"username": "", //platform username
"platform": "", //platform
"category_id": "0", //extension category ID,"0" means“use Team Extension”
"profile_no": "xxx", //profile no.
"profile_id": "xxx" //profile ID
}
],
"page": 1,
"limit": 100
},
"code": 0,
"msg": "Success"
}
//Operation failed
{
"code":-1,
"data":{},
"msg":"failed"
}