Is there a way of getting the list of ACF fields associated with a post type?
You can get a list of acf fields groups associated with a specific post. And then you can get a list of fields in each group
// this has not been tested
$field_groups = acf_get_fields(array('post_id' => $post_id));
foreach ($groups as $group) {
$fields_for_group = acf_get_fields($group['key']);
}