Monitors
Create monitor
Creates an account monitor. Monitors are unlimited. Active monitors check every 1 second and cost 21 credits per hour. Events and webhook deliveries are included. Creation requires available credits for the first hourly charge and username lookup.
post/monitors
Request body
Example request
{
"username": "elonmusk",
"eventTypes": [
"tweet.new",
"tweet.reply"
]
}Response
Monitor created
Example response
{
"id": "42",
"username": "elonmusk",
"xUserId": "1234567890",
"eventTypes": [
"tweet.new",
"tweet.reply"
],
"isActive": true,
"createdAt": "2025-01-15T12:00:00Z",
"nextBillingAt": "2025-01-15T12:00:00Z"
}