> 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/1.-list-profile.md).

# 1. List profile

### Request

<table><thead><tr><th width="262">Method</th><th>URL </th></tr></thead><tbody><tr><td>POST</td><td>api_url/profileList?page=1&#x26;limit=1</td></tr></tbody></table>

<table><thead><tr><th width="167">Params</th><th width="167.33333333333331">Value</th><th>Description</th></tr></thead><tbody><tr><td>browser_uuid[]</td><td>string</td><td>UUID of profile</td></tr><tr><td>name[]</td><td>string</td><td>the name of the profile</td></tr><tr><td>tag_id[]</td><td>number</td><td>ID of tag, use api <em>"<strong>list tag"</strong></em> to get tag_id</td></tr><tr><td>status_id</td><td>number</td><td>ID of status, use api <em>"<strong>list status"</strong></em> to get status_id</td></tr><tr><td>page</td><td>number</td><td>page number of pagination</td></tr><tr><td>limit</td><td>number</td><td>number of profiles displayed</td></tr></tbody></table>

### **Example Request**

<table><thead><tr><th width="274">Method</th><th>URL</th></tr></thead><tbody><tr><td>GET</td><td><a href="http://127.0.0.1:5555/profileList?page=1&#x26;limit=10">http://127.0.0.1:5555/profileList?page=1&#x26;limit=10</a></td></tr></tbody></table>

&#x20;  **Params**

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

### **Example Response**

{% code lineNumbers="true" %}

```json
 "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
    }
}
```

{% endcode %}
