> 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/remote-profile/3.-checking.md).

# 3. Checking

### **Request**

<table><thead><tr><th width="249">Method</th><th>URL</th></tr></thead><tbody><tr><td>GET</td><td>api_url/authorize?uuid={uuid}</td></tr></tbody></table>

| Params | Value  | Description     |
| ------ | ------ | --------------- |
| uuid   | string | UUID of profile |

### **Example Request (Hidemium V2)**

<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/authorize?uuid=992bd6f1-0a4c-40b2-88c0-d6ae54db7347">http://127.0.0.1:5555/authorize?uuid=992bd6f1-0a4c-40b2-88c0-d6ae54db7347</a></td></tr></tbody></table>

### **Example Response**

*If profile is open, the return result is true; If profile is closed, the return result is false.*

{% code lineNumbers="true" %}

```json
{
    "status": true
}
```

{% endcode %}
