# Custom Domains

## list

<mark style="color:blue;">`GET`</mark> `https://api.makeshorter.com/v1/domain/:page`

This endpoint returns active custom domains.

#### Path Parameters

| Name | Type   | Description |
| ---- | ------ | ----------- |
| page | string | page number |

{% tabs %}
{% tab title="200 Returns list of domains" %}

```
{
    "isSuccess": true,
    "message": "Success Message",
    "data": [
        {
            "id": "00000000-0000-0000-0000-000000000000",
            "name": "Domain full url"
        }
        ...
    ]
}
```

{% endtab %}

{% tab title="400 Request gets error. " %}

```
{
    "isSuccess": false,
    "message": "Error Message",
    "data": null
}
```

{% endtab %}
{% endtabs %}
