Skip to main content

DarkFlash Incidents API

Retrieve DarkFlash incidents programmatically — credential leaks, dark web mentions, ransomware listings, and threat actor activity.

Base URL

https://incidents.cyberxtron.com

Authentication

Every request requires two custom headers:

XTRON-ORG-KEY: your_org_key
XTRON-ORG-SECRET: your_org_secret

Contact support@cyberxtron.com to obtain credentials.


Endpoint

GET /api/v1/darkflash/incidents

Query Parameters

ParameterTypeDefaultDescription
keywordstringFilter by monitored keyword
statusstring[]Open, In Progress, Closed
severitystringFilter by severity label
created_datestringFilter by date (YYYY-MM-DD)
created_timestringFilter by time (HH:MM:SS)
pageinteger1Page number (min: 1)
sizeinteger10Results per page (min: 1, max: 100)

Example Requests

# All open DarkFlash incidents
curl \
-H "XTRON-ORG-KEY: your_org_key" \
-H "XTRON-ORG-SECRET: your_org_secret" \
"https://incidents.cyberxtron.com/api/v1/darkflash/incidents?status=Open"

# Filter by keyword and severity
curl \
-H "XTRON-ORG-KEY: your_org_key" \
-H "XTRON-ORG-SECRET: your_org_secret" \
"https://incidents.cyberxtron.com/api/v1/darkflash/incidents?keyword=example.com&severity=Critical&page=1&size=25"

# Filter by date
curl \
-H "XTRON-ORG-KEY: your_org_key" \
-H "XTRON-ORG-SECRET: your_org_secret" \
"https://incidents.cyberxtron.com/api/v1/darkflash/incidents?created_date=2026-04-01&status=Open"

Example Response

{
"success": true,
"data": [
{
"id": 12345,
"title": "Employee credentials found in stealer log",
"taskKey": "DFINC-123",
"status_description": "Open",
"status_statusCd": "Open",
"severity_label": "Critical",
"category_name": "Credential Leak",
"taskType_name": "Stealer Log",
"product_name": "DarkFlash",
"description": "Employee credentials matching your monitored domain were found in a stealer log.",
"createdDt": 1743494400,
"updatedDt": 1743494400,
"impact": "Compromised credentials may allow unauthorized access to corporate systems.",
"recommendation": "Force a password reset for the affected accounts and review authentication logs.",
"keyword": "example.com",
"publisher_source": "Dark web forum",
"retrieved_data": "username@example.com:password123"
}
],
"meta": {
"pagination": {
"total": 42,
"page": 1,
"page_size": 10,
"total_pages": 5
}
}
}

Response Fields

Common Fields

FieldTypeDescription
idintegerUnique numeric ID
titlestringIncident title
taskKeystringTicket key (e.g., DFINC-123)
status_statusCdstringOpen, In Progress, Closed
severity_labelstringCritical, High, Medium, Low
category_namestringDetection category
taskType_namestringSpecific incident type
descriptionstringFull details
impactstringImpact description
recommendationstringSuggested remediation
createdDtintegerCreation Unix timestamp
updatedDtintegerLast update Unix timestamp

DarkFlash-Specific Fields

FieldTypeDescription
keywordstringMonitored keyword that triggered this detection
publisher_sourcestringSource where data was found
retrieved_datastringRaw data excerpt from the source

Pagination

FieldDescription
meta.pagination.totalTotal matching records
meta.pagination.pageCurrent page
meta.pagination.page_sizeResults on this page
meta.pagination.total_pagesTotal pages

Error Codes

StatusDescription
401Invalid or missing credentials
403Subscription suspended or expired
422Invalid query parameter value

Full Incidents API Reference · DarkFlash Console