> For the complete documentation index, see [llms.txt](/llms.txt).

# Get user info

To get the information of the user, extracted from the ID token, you can call the `userInfo` method in the web3auth instance.

## Method[​](#method "Direct link to Method")

`userInfo(): State["userInfo"];`

## Usage[​](#usage "Direct link to Usage")

```
const userInfo = web3auth.userInfo()

```

## UserInfo response[​](#userinfo-response "Direct link to UserInfo response")

```
{
  "aggregateVerifier": "tkey-google",
  "email": "john@gmail.com",
  "name": "John Dash",
  "profileImage": "https://lh3.googleusercontent.com/a/Ajjjsdsmdjmnm...",
  "typeOfLogin": "google",
  "verifier": "torus",
  "verifierId": "john@gmail.com",
  "dappShare": "<24 words seed phrase>", // will be sent only incase of custom verifiers
  "idToken": "<jwtToken issued by Web3Auth>",
  "oAuthIdToken": "<jwtToken issued by OAuth Provider>", // will be sent only incase of custom verifiers
  "oAuthAccessToken": "<accessToken issued by OAuth Provider>" // will be sent only incase of custom verifiers
}

```
