Groww LogoGroww API

User

Get user profile information

Get User Profile

GET https://api.groww.in/v1/user/detail

This API retrieves the user's profile information including their unique identifiers, trading capabilities across exchanges, enabled segments, and DDPI status.

Request

# You can also use wget
curl -X GET https://api.groww.in/v1/user/detail \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {ACCESS_TOKEN}' \
  -H 'X-API-VERSION: 1.0'

Response

{
  "status": "SUCCESS",
  "payload": {
    "vendor_user_id": "d86890d1-c60d-4ebd-9730-4f451670",
    "ucc": "924189",
    "nse_enabled": true,
    "bse_enabled": true,
    "ddpi_enabled": false,
    "active_segments": [
      "CASH",
      "FNO",
      "COMMODITY"
    ]
  }
}

Response Schema

NameTypeDescription
statusstringSUCCESS if request is processed successfully, FAILURE if the request failed
vendor_user_idstringUnique identifier of the user
uccstringUnique Client Code (UCC) of the user
nse_enabledbooleanWhether trading is enabled on National Stock Exchange (NSE) for this user
bse_enabledbooleanWhether trading is enabled on Bombay Stock Exchange (BSE) for this user
ddpi_enabledbooleanDDPI (Demat Debit and Pledge Instruction) status. When enabled, allows the broker to debit securities from the user's Demat account for transactions like selling shares or pledging them for margin, without requiring TPIN and OTP authorization for each transaction
active_segmentsarray[string]List of trading Segment active for the user.

On this page