> For the complete documentation index, see [llms.txt](https://developers.couchdrop.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.couchdrop.io/domains-and-accounts/master.md).

# Manage domain/account

## Get Account

<mark style="color:blue;">`GET`</mark> `https://api.couchdrop.io/manage/account`

This endpoint allows you to view details about your Couchdrop Domain/Org.

#### Headers

| Name  | Type   | Description      |
| ----- | ------ | ---------------- |
| token | string | API Access Token |

{% tabs %}
{% tab title="200 Account details retrieved successfully" %}

```javascript
{
  "account": {
    "api_token": "token", 
    "email_address": "michael@couchdrop.io",
    "subscription_type": "couchdrop_new_enterprise", 
    "username": "mshindo"
  }
}
```

{% endtab %}

{% tab title="403 The token you provided was invalid, or you are not allowed access to this route" %}

```
{
  "err": "Token was not valid"
}
```

{% endtab %}
{% endtabs %}
