Retrieve details for a specific monitor by ID including tracked event types and active status
cURL
curl --request GET \ --url https://xquik.com/api/v1/monitors/{id} \ --header 'x-api-key: <x-api-key>'
curl -X GET https://xquik.com/api/v1/monitors/7 \ -H "x-api-key: xq_YOUR_KEY_HERE" | jq
{ "id": "7", "username": "elonmusk", "xUserId": "44196397", "eventTypes": ["tweet.new", "tweet.reply"], "isActive": true, "createdAt": "2026-02-24T10:30:00.000Z" }
{ "error": "invalid_id", "message": "Invalid monitor ID format" }
{ "error": "unauthenticated", "message": "Missing or invalid API key" }
{ "error": "not_found", "message": "Monitor not found" }
Was this page helpful?