Skip to main content
GET
/
events
/
{id}
Get event
curl --request GET \
  --url https://xquik.com/api/v1/events/{id} \
  --header 'x-api-key: <x-api-key>'
Free — does not consume credits
curl https://xquik.com/api/v1/events/9001 \
  -H "x-api-key: xq_YOUR_KEY_HERE" | 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
Raw tweet object from the X real-time stream. Fields vary by event type. See Webhooks Overview for event data shapes.
xEventId
string
X platform tweet ID associated with this event. Present only for tweet events.
{
  "id": "9001",
  "type": "tweet.new",
  "monitorId": "7",
  "username": "elonmusk",
  "occurredAt": "2026-02-24T14:22:00.000Z",
  "data": {
    "id": "1893456789012345678",
    "text": "The future is now.",
    "author": {
      "id": "44196397",
      "userName": "elonmusk",
      "name": "Elon Musk"
    },
    "isRetweet": false,
    "isReply": false,
    "isQuote": false,
    "createdAt": "2026-02-24T14:22:00.000Z"
  },
  "xEventId": "1893456789012345678"
}