I need the post history, only metadata, user_id, msg_id, topic_id, board_id, timestamp and if possible the title of the post.
Based on your scraping, you need
https://loyce.club/archive/members/Can you give links to my site for anything else you need? That makes it very easy to compress the data.
I used this address of your tool for each user:
https://loyce.club/archive/members/368/3687357.html Obviously, the index and uid are populated by the scraper. Then I try to get the number of posts written as well as the msg_id, topic_id, board_id, and post title. I just need this data, do you have it available?
To be more precise with my scraper I look for this in the Bitcointalk HTML page
<table width="100%" cellpadding="4" cellspacing="1" border="0" class="bordercolor">
<tbody><tr class="titlebg2">
<td class="middletext">
<div style="float: left; width: 3ex;"> 15 </div>
<div style="float: left;"> <a href="https://bitcointalk.org/index.php#4">Other</a> / <a href="https://bitcointalk.org/index.php?board=24.0">Meta</a> / <b><a href="https://bitcointalk.org/index.php?topic=5571375.msg67135951#msg67135951">Re: [TOOL] ⭐Bitcointalk BRDb score</a></b></div>
<div align="right"> on: <b>Today</b> at 07:52:28 AM </div>
</td>
</tr>
<tr>
<td class="catbg" colspan="3">
<span class="middletext"> Started by <a href="https://bitcointalk.org/index.php?action=profile;u=3687357">*Ace*</a> - Last post by <a href="https://bitcointalk.org/index.php?action=profile;u=459836">LoyceV</a> </span>
</td>
</tr>
<tr>
<td class="windowbg2" colspan="3" valign="top" height="80">
<div class="post"><div class="quoteheader"><a href="https://bitcointalk.org/index.php?topic=5571375.msg67134719#msg67134719">Quote from: *Ace* on September 11, 2026, 08:00:30 PM</a></div><div class="quote enhanced">I need the post history, only metadata, user_id, msg_id, topic_id, board_id, timestamp and if possible the title of the post.</div>Based on your scraping, you need <a class="ul" href="https://loyce.club/archive/members/">https://loyce.club/archive/members/</a><br>Can you give links to my site for anything else you need? That makes it very easy to compress the data.</div>
</td>
</tr>
</tbody></table>
I don't need the message text for my tool, just the metadata.