These docs are for an old release. Info on upgrading to v4
edit doc

getView

Returns the View Object for the current view.

.fullCalendar( ‘getView’ ) -> View Object

This is useful if you want to get information about the calendar’s title or start/end dates.

Example Usage:

var view = $('#calendar').fullCalendar('getView');
alert("The view's title is " + view.title);