I would like to get all the questions and comments with a particular tag contained on the Stack Overflow site.
With the use of the API, I managed to make a simple call but I would like to know how I could scroll through the pages to get all the data even from different years.
I'm trying to do that with questions tagged python
.
For example, this link returns all questions from 1st July, 2019 to 5th July, 2019 with tag python:
https://api.stackexchange.com/2.2/questions?fromdate=1561939200&todate=1562284800&order=desc&sort=activity&tagged=python&site=stackoverflow
But if I wanted all data from 2015 to 2019, could I include a code like this one?
?page=10
Where could I put it?