Skip to main content
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

id
integer
required
object
enum<string>
required
Available options:
account
name
string
required
Example:

"Homer Simpson"

email
string<email>
required
Example:

"homer@simpsonsfamily.doh"

I