Skip to main content
curl https://xquik.com/api/v1/events/9001 \
  -H "x-api-key: xq_a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2" | jq

Path Parameters

id
string
required
The event ID to retrieve.

Headers

x-api-key
string
required
Your API key.

Response

id
string
Unique event identifier.
type
string
Event type (e.g. tweet.new, tweet.reply, tweet.quote, tweet.retweet).
monitorId
string
ID of the monitor that captured this event.
username
string
X username that triggered the event.
occurredAt
string
ISO 8601 timestamp of when the event occurred on X.
data
object
Event-specific payload.
xEventId
string
X platform event ID. Present only for certain event types.
{
  "id": "9001",
  "type": "tweet.new",
  "monitorId": "7",
  "username": "elonmusk",
  "occurredAt": "2026-02-24T14:22:00.000Z",
  "data": {
    "tweetId": "1893456789012345678",
    "text": "The future is now.",
    "metrics": {
      "likes": 42000,
      "retweets": 8500,
      "replies": 3200
    }
  },
  "xEventId": "evt_abc123"
}