Do you mean that you want to retrieve user's address? If that so you can try to use the following API in order to retrieve user's address custom field value,
$userId = 25; // example of user id
$user = FD::user($userId);
$address = $user->getFieldData('ADDRESS');