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

Data widgets

PreviousAssessmentNextDeployments

Was this helpful?

List Data Widgets

get

List of data widgets

Responses
200
OK
application/json
get
GET /api/data-widgets HTTP/1.1
Host: app.seedata.io
Accept: */*
200

OK

[
  {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "widgetName": "text",
    "dataProvider": "text",
    "query": "text",
    "data": "text",
    "organisationId": "text",
    "createdAt": "2025-05-12T20:42:38.757Z",
    "updatedAt": "2025-05-12T20:42:38.757Z"
  }
]

Get data widget

get

Get a data widget by ID

Path parameters
dataWidgetIdstring · uuidRequired
Responses
200
OK
application/json
get
GET /api/data-widgets/{dataWidgetId} HTTP/1.1
Host: app.seedata.io
Accept: */*
200

OK

{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "widgetName": "text",
  "dataProvider": "text",
  "query": "text",
  "data": "text",
  "organisationId": "text",
  "createdAt": "2025-05-12T20:42:38.757Z",
  "updatedAt": "2025-05-12T20:42:38.757Z"
}
  • GETList Data Widgets
  • GETGet data widget