---
title: Auth0AuthProfile
source: https://github.com/remix-run/remix/blob/remix@3.0.0-beta.3/packages/auth/src/lib/providers/auth0.ts#L12
---

# Auth0AuthProfile

## Summary

Profile claims returned by the built-in Auth0 auth provider.

## Signature

```ts
interface Auth0AuthProfile {
  birthdate?: string;
  email?: string;
  email_verified?: boolean;
  family_name?: string;
  gender?: string;
  given_name?: string;
  locale?: string;
  middle_name?: string;
  name?: string;
  nickname?: string;
  phone_number?: string;
  phone_number_verified?: boolean;
  picture?: string;
  preferred_username?: string;
  profile?: string;
  sub: string;
  updated_at?: string;
  website?: string;
  zoneinfo?: string;
}

```

## Properties

### `birthdate`

Birthdate claim for the authenticated user.

### `email`

Email address claim for the authenticated user.

### `email_verified`

Indicates whether the provider has verified `email`.

### `family_name`

Family name claim for the authenticated user.

### `gender`

Gender claim for the authenticated user.

### `given_name`

Given name claim for the authenticated user.

### `locale`

Locale claim for the authenticated user.

### `middle_name`

Middle name claim for the authenticated user.

### `name`

Full display name for the authenticated user.

### `nickname`

Auth0 nickname claim, when available.

### `phone_number`

Phone number claim for the authenticated user.

### `phone_number_verified`

Indicates whether the provider has verified `phone_number`.

### `picture`

Profile picture URL claim for the authenticated user.

### `preferred_username`

Preferred username claim for the authenticated user.

### `profile`

Profile URL claim for the authenticated user.

### `sub`

Stable subject identifier for the authenticated user.

### `updated_at`

Auth0 string timestamp describing the last profile update, when available.

### `website`

Personal website URL claim for the authenticated user.

### `zoneinfo`

Time zone claim for the authenticated user.