Data pagination is the practice of dividing records into pages. This makes it easier to retrieve certain parts of data, or not everything at once.
It is usually wanted when there are too many records to show to a user, like with the history of content consumption.
The most common way is using the Offset pagination method. Another way is using the Keyset pagination method.