how to get all q posts' [text]
curl "https://qanon.pub/data/json/posts.json" | jq -cr '.[].text' | grep -E -o '[.*?]'
you need jq and curl for this. probably already in your package manager, if on linux/mac. (apt-get or brew) on windows, just download jq and curl seperately.
the command will get all current Q posts, and searches them all for text within these characters: "[" and "]".
there's some interesting text to be found there… (pic related)
if you have questions, let me know