DarkRadar

Sızıntı Raporları

Sızıntı rapor detaylarını getir

İstatistikler ve metadata dahil olmak üzere belirli bir sızıntı raporunun detaylı bilgilerini getirir.

GET/v1/leaks/:reportId

Yetkilendirmeler

X-API-Key
stringzorunlu

Yol Parametreleri

reportId
stringzorunlu

Unique identifier of the leak report

Gövde

application/json

Yanıt

application/json
200Successfully retrieved report details
{
  "success": true,
  "message": "OK",
  "data": {
    "report": {
      "_id": "507f1f77bcf86cd799439011",
      "firm": "507f1f77bcf86cd799439012",
      "status": "completed",
      "startDate": "2024-01-01T00:00:00Z",
      "endDate": "2024-01-31T23:59:59Z",
      "totalCredentials": 1250,
      "newCredentials": 125,
      "statistics": {
        "bySource": {
          "RedLine": 500,
          "Vidar": 350
        },
        "byDomain": {
          "example.com": 200
        }
      },
      "createdAt": "2024-02-01T10:00:00Z",
      "completedAt": "2024-02-01T10:30:00Z"
    }
  },
  "meta": {
    "timestamp": "2024-02-01T10:30:45.123Z",
    "requestId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "responseTime": 35
  }
}
404Report not found
{
  "success": false,
  "message": "Report not found",
  "error": "NotFound"
}