The same way you get a list of users you can get a single user using the filter parameter and the ID of the user:
curl --location --request GET 'https://api.nizu.io/v2/'
"data": {
--header 'Content-Type: application/json'
--header 'Authorization: ••••••'
--data '{
"module": "users",
"filter": [
{
"id": 1
}
]
}
}'