Slack Presence
Real-time presence tracking with style
How to Use
1. Get User ID
Right-click on a user's profile in Slack and select "Copy member ID"
2. Enter ID
Paste the ID in the input box above (format: U082FBF4MV5)
3. Subscribe
Click Subscribe to start receiving real-time presence updates
API Details
WebSocket URL: wss://strack.sleepy.engineer
Subscribe message:
{
"op": "SUBSCRIBE",
"d": {
"user_ids": ["U082FBF4MV5"]
}
} Example response:
{
"type": "PRESENCE_UPDATE",
"data": {
"id": "U082FBF4MV5",
"name": "sleepynerd",
"real_name": "Ella",
"display_name": "Ella",
"status_text": "unprofessional transgirl >w<",
"status_emoji": ":dino_waah:",
"status_emoji_url": "https://emoji.slack-edge.com/T0266FRGM/dino_waah/7c62390b476756f6.jpg",
"status_expiration": 0,
"dnd_enabled": false,
"avatar": "https://avatars.slack-edge.com/2025-03-07/8590465257552_16b9e5d74f30b3f56511_192.png",
"presence": "active",
"updated_at": "2025-03-09T23:05:45.784Z"
}
}