POST
/
jwt-auth
/
v1
/
token
/
revoke
curl --request POST \
  --url https://{your-domain}/wp-json/jwt-auth/v1/token/revoke \
  --header 'Authorization: Bearer <token>'
{
  "code": "jwt_auth_token_revoked",
  "data": {
    "status": 200,
    "revoked_at": "2025-06-29 22:55:30"
  }
}

Authorizations

Authorization
string
header
required

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

Response

200
application/json

Token revoked successfully

The response is of type object.