Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I get access to StackOverflow data?

I need to create reports around tag usage and unanswered posts. What're the different mechanisms available to access this data?

like image 507
Uma Subramanian Avatar asked Oct 23 '25 18:10

Uma Subramanian


1 Answers

There are 4 options:

  1. Use SEDE (Stack Exchange Data Explorer), which allows you to easily query the data. You can download the queried rows, however it does not allow you to run queries locally and can only be used manually.

  2. Use SE API, which allows you to query some things of Stack Overflow over REST calls.

  3. Download a public release of the SO data dump and use historical data.

  4. Use the Stack Exchange public dataset on Google BigQuery

like image 117
DJanssens Avatar answered Oct 27 '25 02:10

DJanssens