> Documentation index: [Saleor](/llms.txt) · [This section](/api-reference/authentication/llms.txt)
> Source: https://docs.saleor.io/api-reference/authentication/mutations/token-verify

# tokenVerify Mutation

Verify JWT token.

```graphql
tokenVerify(
  token: String!
): VerifyToken
```

Details

```graphql
type VerifyToken {
  user: User
  isValid: Boolean!
  payload: GenericScalar
  accountErrors: [AccountError!]! @deprecated
  errors: [AccountError!]!
}
```

<a id="arguments"></a>

### Arguments

<a id="token"></a>

#### [`token`](#token) ● [`String!`](/api-reference/miscellaneous/scalars/string.md)

JWT token to validate.

<a id="type"></a>

### Type

<a id="verifytoken"></a>

#### [`VerifyToken`](/api-reference/authentication/objects/verify-token.md)

Verify JWT token.
