POST
/
jwt-auth
/
v1
/
token
/
validate
curl --request POST \
  --url https://{your-domain}/wp-json/jwt-auth/v1/token/validate \
  --header 'Authorization: Bearer <token>'
{
  "code": "jwt_auth_valid_token",
  "data": {
    "status": 200
  }
}

Authorizations

Authorization
string
header
required

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

Response

200
application/json
Token is valid
code
string

Response code

Example:

"jwt_auth_valid_token"

data
object