Menu

Query Profile V2

Please update to the latest patch version to use it.

Basics

POST  /api/v2/browser-profile/list

Description: Query the information of created profiles, such as proxy information and proxy ID.


Request Parameters

Optional Query parameters can be omitted.

NameTypeNecessaryDefaultExampleDescription
group_idtextNO-1001Query by group ID. If empty, system will search all groups
profile_idlistNO-["h1yynkm","h1yynks","h1yynkd"]Query by profile ID
profile_nolistNO-["123","124","125"]Query by profile No.
sort_typetextNOprofile_noprofile_noThe 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_ordertextNOdescdescDefault: desc.
asc means ascending, desc means descending.
pageNO11Query by page number, default setting: 1
limitNO150How many profiles are queried for 1 page;
Default setting: 1/page, range 1~100.


Return Data


//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"
}


Previous
Query Profile
Next
Delete Profile
Last modified: 2025-08-08Powered by