seedata.io DOCS
  • Welcome
  • Getting Started
    • What is seedata.io?
    • Core Concepts
    • Quick Start
    • Get Help
    • Subscriptions
  • Features
    • Dashboard
    • Alerts
    • Integrations
      • AWS
      • Webhook
    • Deployments
    • Seeds
      • Email
      • URL
      • Person
      • Microsoft Document (XLSX, DOCX)
      • PDF Document
      • HTML Page
      • SVG Image
      • AWS Credential
      • Virtual Machine Honeypot
      • EC2 Honeypot
    • Events
    • Intel
    • Settings
      • Whitelists
      • Users & Tokens
      • Profiles
  • Tutorials
    • Managing your alerts
      • Webhook
      • Webforms
      • Teams
      • Syslog
      • Slack
      • ServiceNow
      • Jira
      • Email
      • Elasticsearch
      • Datadog
    • Registering for a new account
    • Planting a VM honeypot seed
    • Preparing a VM Honeypot host
    • Planting an EC2 honeypot seed
    • Planting AWS Serverless Seeds
  • API reference
    • Activities
    • Api tokens
    • Copilot
      • Assessment
    • Data widgets
    • Deployments
    • Events
      • Next
      • Previous
      • Alert
      • Journal
    • Integrations
    • Intel
    • Notification recipients
      • Test
    • Seeds
      • Bulk
      • Retire
      • Test
      • Next
      • Previous
    • Stats
    • Whitelisted sources
Powered by GitBook
On this page

Was this helpful?

  1. API reference

Events

PreviousDeploymentsNextNext

Was this helpful?

List Events

get

List of events

Query parameters
seedstring · uuidOptional

Filter events by seed ID

intelstring · uuidOptional

Filter events by intel ID

statusstringOptional

Filter events by status

priorityinteger · min: 1 · max: 5Optional

Filter events by priority

typestringOptional

Filter events by type

interactionstringOptional

Filter events by interaction type

searchstringOptional

Text search for a particular event

offsetintegerOptional

Pagination offset

limitinteger · min: 1 · max: 100Optional

Pagination limit

orderBystringOptional

Order the results by this field, in this direction

Example: createdAt:descPattern: ^[a-zA-Z0-9\_]+(:(asc|desc))?$
Responses
200
OK
application/json
get
GET /api/events HTTP/1.1
Host: app.seedata.io
Accept: */*
200

OK

{
  "metadata": {
    "totalCount": 1,
    "offset": 1,
    "limit": 1
  },
  "items": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "title": "text",
      "type": "email",
      "interaction": "text",
      "priority": 1,
      "status": "being_analysed",
      "intel": [
        {
          "id": "123e4567-e89b-12d3-a456-426614174000",
          "type": "ip",
          "observableId": "text",
          "observableValue": "text",
          "threatScore": 1,
          "longitude": 1,
          "latitude": 1,
          "city": "text",
          "region": "text",
          "country": "text",
          "organisationName": "text",
          "organisationAsn": "text",
          "notes": {
            "blacklists": {
              "blacklists": [
                "text"
              ],
              "detections": 1,
              "engines_count": 1,
              "detection_rate": "text"
            },
            "threats": {},
            "scorecard": {
              "score": 1,
              "grade": "text",
              "grade_url": "text"
            },
            "security": {
              "is_abuser": true,
              "is_attacker": true,
              "is_bogon": true,
              "is_cloud_provider": true,
              "is_proxy": true,
              "is_relay": true,
              "is_tor": true,
              "is_tor_exit": true,
              "is_vpn": true
            }
          },
          "stats": {
            "totalEvents": 1,
            "organisationEvents": 1
          },
          "firstSeen": "text",
          "lastSeen": "text",
          "createdAt": "2025-05-12T21:18:21.880Z",
          "updatedAt": "2025-05-12T21:18:21.880Z"
        }
      ],
      "roleId": "text",
      "createdAt": "2025-05-12T21:18:21.880Z",
      "updatedAt": "2025-05-12T21:18:21.880Z",
      "source": "text",
      "target": "text",
      "details": "text",
      "destination": "text",
      "timestamp": 1,
      "seedId": "123e4567-e89b-12d3-a456-426614174000",
      "test": true,
      "whitelisted": true
    }
  ]
}

Get Event

get

Get details for a particular event

Path parameters
eventIdstring · uuidRequired
Responses
200
OK
application/json
get
GET /api/events/{eventId} HTTP/1.1
Host: app.seedata.io
Accept: */*
200

OK

{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "title": "text",
  "type": "email",
  "interaction": "text",
  "priority": 1,
  "status": "being_analysed",
  "intel": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "type": "ip",
      "observableId": "text",
      "observableValue": "text",
      "threatScore": 1,
      "longitude": 1,
      "latitude": 1,
      "city": "text",
      "region": "text",
      "country": "text",
      "organisationName": "text",
      "organisationAsn": "text",
      "notes": {
        "blacklists": {
          "blacklists": [
            "text"
          ],
          "detections": 1,
          "engines_count": 1,
          "detection_rate": "text"
        },
        "threats": {},
        "scorecard": {
          "score": 1,
          "grade": "text",
          "grade_url": "text"
        },
        "security": {
          "is_abuser": true,
          "is_attacker": true,
          "is_bogon": true,
          "is_cloud_provider": true,
          "is_proxy": true,
          "is_relay": true,
          "is_tor": true,
          "is_tor_exit": true,
          "is_vpn": true
        }
      },
      "stats": {
        "totalEvents": 1,
        "organisationEvents": 1
      },
      "firstSeen": "text",
      "lastSeen": "text",
      "createdAt": "2025-05-12T21:18:21.880Z",
      "updatedAt": "2025-05-12T21:18:21.880Z"
    }
  ],
  "roleId": "text",
  "createdAt": "2025-05-12T21:18:21.880Z",
  "updatedAt": "2025-05-12T21:18:21.880Z",
  "source": "text",
  "target": "text",
  "details": "text",
  "destination": "text",
  "timestamp": 1,
  "seedId": "123e4567-e89b-12d3-a456-426614174000",
  "test": true,
  "whitelisted": true
}
  • GETList Events
  • GETGet Event