# Account & Billing

## Get account details

<mark style="color:blue;">`GET`</mark> `https://api.smtpd.dev/api/v1/account`

This endpoint allows you to get the account details of the currently logged in user.

#### Headers

| Name           | Type   | Description             |
| -------------- | ------ | ----------------------- |
| Authentication | string | `Bearer {access_token}` |

{% tabs %}
{% tab title="200 " %}

```
{
  "id": "811affc1-66c7-4982-b39e-29f9536b4720",
  "account_name": "James Hardie Industries Inc",
  "user_count": 1,
  "api_key_count": 0,
  "billing_contact_email_address": "jack.truong@jameshardie.com",
  "plan_id": "dbef0751-42b7-424e-8d1f-4ad67c478a2d",
  "is_verified": true,
  "created_at_utc": 1598610725,
  "modified_at_utc": 1598610963
}
```

{% endtab %}
{% endtabs %}
