Intel

Get intel

get

Get the intel list

Query parameters
searchstringOptional
eventstring · uuidOptional

Filter intel by event ID

typestringOptional

Filter intel by type

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/intel HTTP/1.1
Host: app.seedata.io
Accept: */*
200

OK

{
  "metadata": {
    "totalCount": 1,
    "offset": 1,
    "limit": 1
  },
  "items": [
    {
      "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-06-23T22:31:34.114Z",
      "updatedAt": "2025-06-23T22:31:34.114Z"
    }
  ]
}

Get Intel

get

Get a single Intel object

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

OK

{
  "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-06-23T22:31:34.114Z",
  "updatedAt": "2025-06-23T22:31:34.114Z"
}

Was this helpful?