GET
/
account
Get account info
curl --request GET \
  --url https://api.usefathom.com/v1/account \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "object": "account",
  "name": "Homer Simpson",
  "email": "homer@simpsonsfamily.doh"
}

Retrieve information about the account that owns the API key.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Account details

The response is of type object.