> For the complete documentation index, see [llms.txt](https://docs.hidemium.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.hidemium.io/api-zi-dong-hua/huo-qu-zhang-hao-zi-liao/2.-pei-zhi-mo-ren-zhi-lie-biao.md).

# 2. 配置默认值列表

获取配置默认值列表

## 申请

| 模式  | URL                                                         |
| --- | ----------------------------------------------------------- |
| GET | api\_url/get-list-config-default?page={page}\&limit={limit} |

| 参数    | 价值 | 描述      |
| ----- | -- | ------- |
| page  | 数字 | 分页的页数   |
| limit | 数字 | 显示的资料数量 |

## 申请示例

| 模式  | URL                                                             |
| --- | --------------------------------------------------------------- |
| GET | <http://127.0.0.1:5555/get-list-config-default?page=1&limit=10> |

| 参数    | 价值 |
| ----- | -- |
| page  | 1  |
| limit | 10 |

## 响应示例

```json
[
    {
        "id": 433,
        "name": "1",
        "isDefault": true,
        "config": {
            "os": [
                "win",
                "mac",
                "lin",
                "android"
            ],
            "browser": [
                "chrome"
            ],
            "name": "1",
            "id": 433,
            "StartUrl": null
        },
        "created_at": "2024-01-08T01:19:37.000000Z"
    },
    {
        "id": 427,
        "name": "3 browser",
        "isDefault": false,
        "config": {
            "browser": [
                "chrome",
                "edge",
                "opera"
            ],
            "name": "3 browser",
            "profileName": "fgh",
            "id": 427,
            "StartUrl": null
        },
        "created_at": "2024-01-06T04:49:52.000000Z"
    }
]

```
