if(function_exists('acf_get_field_groups')) { //check for is acf active 
      $fields = acf_get_fields_by_id(1569); //id of group
      foreach ($fields as $key => $field) { 
          $field_label = $field['label']; //label of field
          $field_type = $field['type']; //input type
      }
}