> ## Documentation Index
> Fetch the complete documentation index at: https://getequity.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Get User by ID

> Retrieves details about a user.

<ParamField path="userId" type="string" required>
  The user to retrieve info for
</ParamField>

<ParamField body="signature" type="string" required>
  The user security token/signature generated from get equity
</ParamField>

<ResponseExample>
  ```json theme={null}
  {
    "status": "success",
    "message": "User data fetched successfully",
    "data": {
      "type": "User",
      "entity_type": "user",
      "fname": "Name",
      "lname": "Name",
      "email": "amos@yopmail.com",
      "phone": "23400009088888",
      "city": "Lagos",
      "state": "Lagos",
      "country": "Nigeria",
      "homeAddress": "Lagos",
      "dob": "01-Jun-1982",
      "sex": "Male"
    }
  }
  ```
</ResponseExample>
