Get more than one author’s posts with REST API

The author parameter in your request, seems to be mapped to the author__in parameter in WP_Query that runs behind the rest-api call here, where a comma separated input:

/wp-json/wp/v2/posts?author=1,5

is translated to an array( 1,5 ) input for author__in.