Skip to main content
GET
/
api
/
user
cURL
curl --request GET \
  --url https://domainwarden.app/api/user \
  --header 'Authorization: Bearer <token>'
{
  "name": "John Doe",
  "email": "[email protected]",
  "avatar": "https://www.gravatar.com/avatar/5ddffe854df20f?s=200",
  "subscribed": false,
  "created_at": "2015-11-29 00:00:00"
}

Authorizations

Authorization
string
header
required

You can obtain your API Token from your Domainwarden account settings.

Response

name
string
Example:

"John Doe"

email
string
avatar
string
Example:

"https://www.gravatar.com/avatar/5ddffe854df20f?s=200"

subscribed
boolean
Example:

false

created_at
string
Example:

"2015-11-29 00:00:00"