Hi @dshandler - the Tweet payload returns an in_reply_to_status_id field. Taking your example, you could pass a query that would return all Tweets that respond directly to the first Tweet of the thread (the original Tweet). You would get a series of Tweets back, all of which are a direct response to the original Tweet. Example query below (using Historical PowerTrack).
So to answer your first question: with this example query, the number of Tweets returned would be a lot more than 2.
{
"value":"in_reply_to_status_id:1070110927788347393",
"tag":"test_1"
}
However, this example request would not pick up on āsub-conversationsā, such as the Tweet you screenshotted.
Iāve pasted below the first part of the Tweet payload that corresponds to the Tweet in your screenshot. You can see that the in_reply_to_status_id field references a different status id: this is the status id that the user was directly responding to here (and not the status id that first started the thread).
If you wanted to know all the āpeople in conversationā, you can use the user_mentions field to see all people who are included in this response (including the very first user who started the thread).
{
"created_at": "Wed Dec 05 00:33:51 +0000 2018",
"id": 1070113988245999616,
"id_str": "1070113988245999616",
"full_text": "@jstrong244 @krassenstein @EdKrassen @realDonaldTrump Cant handle the truth mate?",
"truncated": false,
"display_text_range": [
54,
81
],
"entities": {
"hashtags": [],
"symbols": [],
"user_mentions": [
{
"screen_name": "jstrong244",
"name": "Jasaplay",
"id": 2868067125,
"id_str": "2868067125",
"indices": [
0,
11
]
},
{
"screen_name": "krassenstein",
"name": "Brian Krassenstein",
"id": 133938408,
"id_str": "133938408",
"indices": [
12,
25
]
},
{
"screen_name": "EdKrassen",
"name": "Ed Krassenstein",
"id": 132339474,
"id_str": "132339474",
"indices": [
26,
36
]
},
{
"screen_name": "realDonaldTrump",
"name": "Donald J. Trump",
"id": 25073877,
"id_str": "25073877",
"indices": [
37,
53
]
}
],
"urls": []
},
"source": "<a href=\"http:\/\/twitter.com\" rel=\"nofollow\">Twitter Web Client<\/a>",
"in_reply_to_status_id": 1070113599199371265,
"in_reply_to_status_id_str": "1070113599199371265",
"in_reply_to_user_id": 2868067125,
"in_reply_to_user_id_str": "2868067125",
"in_reply_to_screen_name": "jstrong244",
"user": {
"id": 830612821155082241,
"id_str": "830612821155082241",
"name": "Vince Smith",
"screen_name": "TheNutter64",
"location": "Brisbane, Queensland",
"description": "",
"url": null,
"entities": {
"description": {
"urls": []
}
},
ETC.