# 1. 资料列表

## 申请

| 模式  | URL                                                                                             |
| --- | ----------------------------------------------------------------------------------------------- |
| GET | api\_url/profileList?page=1\&limit=1[&#xD;](http://127.0.0.1:5555/profileList?page=1\&limit=10) |

<table><thead><tr><th width="183">参数</th><th width="169">价值</th><th>描述</th></tr></thead><tbody><tr><td>browser_uuid[]</td><td>string</td><td>资料的 UUID</td></tr><tr><td>name[]</td><td>string</td><td>资料的名称</td></tr><tr><td>tag_id[]</td><td>number</td><td>标签的 ID，使用 api“list tag”获取 tag_id</td></tr><tr><td>status_id</td><td>number</td><td>状态的 ID，使用 api“list status”获取 status_id</td></tr><tr><td>page</td><td>number</td><td>分页的页数</td></tr><tr><td>limit</td><td>number</td><td>显示的资料数量</td></tr></tbody></table>

## 申请示例

| 模式  | URL                                                                                                           |
| --- | ------------------------------------------------------------------------------------------------------------- |
| GET | [http://127.0.0.1:5555/profileList?page=1\&limit=10&#xD;](http://127.0.0.1:5555/profileList?page=1\&limit=10) |

| 模式               | URL                                  |
| ---------------- | ------------------------------------ |
| browser\_uuid\[] | 992bd6f1-0a4c-40b2-88c0-d6ae54db7347 |
| name\[]          |                                      |
| tag\_id\[]       |                                      |
| status\_id       |                                      |
| limit            |                                      |
| page             |                                      |

## 响应示例

```
 "data": {
        "type": "success",
        "title": "Load successfully",
        "content": [
            {
                "uuid": "992bd6f1-0a4c-40b2-88c0-d6ae54db7347",
                "directory": "2023/05/15",
                "file_name": "e332938226517443e5ca72b5d269a0a6.zip",
                "can_be_running": true,
                "proxy": "",
                "created_at": "2023-05-15T07:28:07.000000Z",
                "created_at_diff": "43 minutes ago",
                "id": 20165,
                "folder_id": 532,
                "check_open": 1,
                "name": "15 - 5",
                "version": 112,
                "browser_type": "hidemium",
                "os": "mac",
                "note": "",
                "last_open": "2023-05-15 14:30:53",
                "last_open_diff": "41 minutes ago",
                "transfer": "",
                "source_version": null,
                "shares_role": false,
                "shared_uuid": "",
                "status": null,
                "status_chil": 0,
                "tags": [],
                "status_id": null,
                "listing": null
            }
        ]
    },
    "links": {
        "first": "https://v2-api.multibrowser.io/v1/browser/list?page=1",
        "last": "https://v2-api.multibrowser.io/v1/browser/list?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "path": "https://v2-api.multibrowser.io/v1/browser/list?page=1",
        "per_page": "10",
        "to": 1,
        "total": 1
    }
}

```
