Events

New Post Event

The event sent whenever there's a new post from a monitored account

{
  "event_id": "string", // unique ID for the event
  "event": "twitter.post.new" | "truth_social.post.new",
  "task_info": {
    "id": "integer", // task ID
    "group": "string", // task group
    "handle": "string", // monitored user handle
    "profile_info": UserInfoObject // monitored user profile info
  },
  "data": PostDataObject // the new post data
}
chevron-rightPostDataObjecthashtag
{
  "id": "string", // ID of the post
  "created_at": "integer", // timestamp of the post (millisecond)
  "type": "post" | "repost" | "quote" | "reply", // what the post is
  "text": "string", // text of the post
  "media": [ MediaOject ], // images/videos in the post
  "mentions": [ MentionOject ], // mentions in the post
  "tags": [ "string" ], // tags in the post
  "author": UserInfoObject,
  "quoted?": PostDataObject,
  "reposted?": PostDataObject,
  "replied?": PostDataObject,
}
chevron-rightMediaOjecthashtag
{
  "type": "photo" | "video", // type of the media
  "url": "string", // url to the photo or video
  "preview?": "string", // if it's a video, the url to the first frame of the video
  "duration?": "integer" // if it's a video, the duration of it in milliseconds 
}
chevron-rightMentionOjecthashtag
chevron-rightUserInfoObjecthashtag

New Following Event

The event sent whenever the monitored account follows someone

chevron-rightUserInfoObjecthashtag

Profile Update Event

The event sent whenever the monitored account updates its profile

chevron-rightUserInfoObjecthashtag
chevron-rightUserChangeObjecthashtag

OCR Result Event

The event sent when the OCR in a posted image is ready (when enabled)

chevron-rightUserInfoObjecthashtag

Post Translation Event

The event sent when the translation of a post is ready (when enabled)

chevron-rightUserInfoObjecthashtag

Task Status Event

The event sent if the monitored profile becomes unavailable or available again

chevron-rightUserInfoObjecthashtag

New Post Global Monitor Event

The event sent whenever there's a new post matching a monitored keyword

chevron-rightKeywordPostDataObjecthashtag

Last updated