GET
/
api
/
bot-accounts
/
conversations
List Conversations
curl --request GET \
  --url https://api.example.com/api/bot-accounts/conversations

Query Parameters

ParameterTypeDescription
campaignIdstringFilter by campaign ID

Response

{
  "conversations": [
    {
      "id": "conv-abc12345",
      "tweetId": "1234567890",
      "tweetUrl": "https://x.com/user/status/1234567890",
      "tweetText": "Looking for the best CRM tool",
      "tweetAuthor": "techfounder",
      "tweetAuthorName": "Tech Founder",
      "status": "reply_generated",
      "campaignId": "camp-def67890",
      "campaignName": "CRM Leads",
      "botAccountId": "acc-ghi12345",
      "botUsername": "botuser1",
      "messages": [
        {
          "type": "original_tweet",
          "content": "Looking for the best CRM tool",
          "timestamp": "2026-03-30T10:00:00.000Z"
        },
        {
          "type": "bot_reply",
          "content": "Have you tried...",
          "timestamp": "2026-03-30T10:01:00.000Z"
        }
      ],
      "createdAt": "2026-03-30T10:00:00.000Z"
    }
  ]
}