curl --request POST \
--url https://api.example.com/auth/verify \
--header 'Content-Type: application/json' \
--data '
{
"token": "<string>"
}
'{
"valid": true,
"user": {},
"expires": "<string>"
}Verify if a token is valid and return user information.
curl --request POST \
--url https://api.example.com/auth/verify \
--header 'Content-Type: application/json' \
--data '
{
"token": "<string>"
}
'{
"valid": true,
"user": {},
"expires": "<string>"
}