> 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/use-cases/api-automation-v2/get-profile/2.-list-config-default.md).

# 2. List config default

Get your list default config

### **Request**

<table><thead><tr><th width="249">Method</th><th>URL</th></tr></thead><tbody><tr><td>GET</td><td>api_url/get-list-config-default?page={page}&#x26;limit={limit}</td></tr></tbody></table>

| Params | Value  | Description                  |
| ------ | ------ | ---------------------------- |
| page   | number | page number of pagination    |
| limit  | number | number of profiles displayed |

### **Example Request**&#x20;

<table><thead><tr><th width="251">Method</th><th>URL</th></tr></thead><tbody><tr><td>GET</td><td><a href="http://127.0.0.1:5555/get-list-config-default?page=1&#x26;limit=10">http://127.0.0.1:5555/get-list-config-default?page=1&#x26;limit=10</a></td></tr></tbody></table>

&#x20;  **Params**

<table><thead><tr><th width="250"></th><th></th></tr></thead><tbody><tr><td>page</td><td>1</td></tr><tr><td>limit</td><td>10</td></tr></tbody></table>

### **Example Response**

<pre class="language-json" data-line-numbers><code class="lang-json">[
<strong>    {
</strong>        "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"
    },
<strong>    {
</strong>        "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"
    }
]

</code></pre>
