ContributionsMost RecentMost LikesSolutionsattempting to pull all message content in threads I need to conduct a sentimental analysis on our developer community forum. I need an endpoint that will return the body of all the messages from a single post. After thoroughly reading the lithium API documentation and experimenting with various endpoints, I haven’t found anything that does this. The best I can get is an endpoint that prints all messages in a scattered format. API endpoint: https://community.developer.[insert_domain].net/api/2.0/search?q=SELECT+subject, body, post_time+FROM+messages+ORDER+BY+post_time+desc To avoid storing thousands of messages locally and ordering them myself, I was wondering if there is anything I missed that prints all the messages in order of thread. Solved