> ## 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 member by email

> Fetch a single member of your organisation by their email address

<ParamField query="email" type="string" required>
  The email address of the member to fetch.
</ParamField>

<ResponseExample>
  ```json theme={null}
  {
      "status": "success",
      "message": "Organisation member gotten successfully",
      "data": {
          "type": "User",
          "entity_type": "user",
          "kyc": {
              "bank": false,
              "identityDocument": "Approved",
              "selfie": "Approved",
              "address": "Approved",
              "accredited": "Sophisticated Investor",
              "email": true,
              "terms": true
          },
          "activated": true,
          "verified": true,
          "pin_set": false,
          "biometrics_auth": false,
          "self_activated": true,
          "two_factor_enabled": false,
          "_id": "6a4b8c63bb937d0002622dc1",
          "fname": "Jude",
          "lname": "Dike",
          "email": "chris@yopmail.com",
          "username": null,
          "phone": "2348183642720",
          "city": "Lagos",
          "state": "Lagos",
          "country": "Nigeria",
          "homeAddress": "4 Omoba Murphy ayetoro street",
          "createdAt": "2026-07-06T11:07:15.854Z",
          "updatedAt": "2026-07-06T11:07:15.902Z",
          "dealroom_member": true
      }
  }
  ```
</ResponseExample>
