v2.1.1
English
English
  • Dotlake CTI (Ciberintelligence Solution)
    • Use cases
    • How does it work?
    • Product licenses
    • Users management
  • API Documentation
    • Autenticación (Token)
    • Dot Data Feed
    • Data Breach
    • IX-Plore
  • FAQs
Powered by GitBook
On this page
  1. API Documentation

Data Breach

Module that gives you access to the updated gaps of the last 20 years. (+66 billion records).

PreviousDot Data FeedNextIX-Plore

Last updated 10 months ago

This module consumes one credit for every 100 visible results and is renewed annually. After the year, these credits are reset to total, they are not accumulated. We will make requests to the main endpoint https://app.dotlake.io/api/search/data_breaches.

This will return both the results obtained and the ID necessary to perform the pagination. We must enter this ID in the payload to obtain the next page of results. When this ID does not vary with respect to the previous one, it indicates that pagination has ended and we do not have more results to download.

post

Get results from all the database that are leaked

Authorizations
Header parameters
AuthorizationstringRequired

Authentication header. API token prefixed with 'token '

Default: token API_TOKEN
Body
next_idstringOptional

Page id to retrieve the next page in a multi-page response.

from_dateintegerOptional

Minimum date, as UNIX epoch, this date refers to sort_field date selected

Default: 1
to_dateintegerOptional

Maximum date, as UNIX epoch, this date refers to sort_field date selected

Default: 9999999999
sort_orderstring · enumRequired

Sort order of results, either descending or ascending

Possible values:
sort_fieldstring · enumRequired

Criteria for sorting of results, either creation date or date the results were crawled

Possible values:
Responses
200
Successfully retrieved search query results from data breaches
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
post
curl --location 'https://app.dotlake.io/api/search/data_breaches' \
--header 'Authorization: Token API_TOKEN' \
--header 'Content-Type: application/json' \
--data '{"sort_order":"desc","sort_field":"crawled_date","querystring":"(($q:\"leak\"))"}'
{
  "request_limit": {
    "user_request_count": 10,
    "user_request_limit": 50,
    "organization_request_count": 15,
    "organization_request_limit": 100,
    "request_limit_period_start": "2023-01-01T00:00:00Z",
    "request_limit_period_end": "2023-12-31T23:59:59Z"
  },
  "data": {
    "query": {
      "pagination": {
        "total": 865,
        "count": 100,
        "page": 0
      }
    },
    "results": [
      {
        "information": {
          "date_register": "2023-01-01T00:00:00Z",
          "date": "2023-01-01T00:00:00Z",
          "inserted_date": "2023-01-01T00:00:00Z",
          "uuid": "text",
          "masked": {
            "name": null,
            "surname": null,
            "username": null,
            "email": null,
            "crypto_wallet": null,
            "domain": null,
            "telephone": null,
            "zip": null,
            "city": null,
            "state": null,
            "address": null,
            "nid": null,
            "nid_6": null,
            "ssn": null,
            "ssn_4": null,
            "dob": null,
            "company": null,
            "brand": null,
            "credit_card": null,
            "credit_card_6": null,
            "credit_card_10": null,
            "financial_card_bin": null,
            "iban": null,
            "network_ip": null,
            "company_tax_number": null
          },
          "password": "0",
          "password_info": {
            "password_clear": 0,
            "password_last_chars": "***123",
            "password_strength": 0,
            "password_is_encrypted": 0,
            "password_encryption_method": [
              "text"
            ]
          },
          "name": "text",
          "surname": "text",
          "username": "text",
          "email": "text",
          "crypto_wallet": "text",
          "domain": "text",
          "telephone": "text",
          "zip": "text",
          "city": "text",
          "state": "text",
          "address": "text",
          "nid": "text",
          "nid_6": "text",
          "ssn": "text",
          "ssn_4": "text",
          "dob": "text",
          "company": "text",
          "brand": "text",
          "credit_card": "text",
          "credit_card_6": "text",
          "credit_card_10": "text",
          "financial_card_bin": "text",
          "iban": "text",
          "network_ip": "text",
          "company_tax_number": "text"
        },
        "source": {
          "atribution score": 100,
          "authencity score": 100,
          "confidence score": "low",
          "type": "hacked-leaked",
          "source": "web",
          "name": "gowireusout009",
          "key": "6670544890a9b6000cd00bcb",
          "description": "text",
          "breach name": "text",
          "recommendations": "text"
        },
        "type": "stolenid breach",
        "validate": 0
      }
    ],
    "next_id": ""
  },
  "status": 200,
  "description": "OK"
}