Hey there, I'm trying to see how many comments containing a specific word were made during a specific time period. In the homepage of the website (https://pullpush.io) there's an example for something really similar using the word "science" in the askscience subreddit, however in this example the api returns a total_results
field inside of metadata
but when I try using that same url (https://api.pullpush.io/reddit/search/comment/?q=science&subreddit=askscience&sort=asc&size=1) here's what metadata
looks like:
{"op_a":12711,"op_b":47,"total":12759}
I thought that total
was the same as total_results
but just with a different name, however in this case total
is 12759 while in the example total_results
is 134785, around 10 times more. Am I doing something wrong or is this field no longer returned? Thanks.