v2.1.1
Español
Español
  • Dotlake CTI
    • Casos de uso
    • Cómo funciona
    • Tipos de licencia
    • Gestión de usuarios
  • Documentación API
    • Autenticación (Token)
    • Dot Data Feed
    • Data Breach
    • IX-Plore
  • FAQs
Powered by GitBook
On this page
  1. Documentación API

Data Breach

Módulo que te da acceso a las brechas de los últimos 20 años actualizadas. (+ 66 billones de registros).

PreviousDot Data FeedNextIX-Plore

Last updated 10 months ago

Este módulo consume un crédito por cada 100 resultados visibles y la renovación es anual.

Transcurrido el año estos créditos se reinician al total, no se acumulan.

Realizaremos peticiones al endpoint principal https://app.dotlake.io/api/search/data_breaches.

Éste nos devolverá tanto los resultados obtenidos como el ID necesario para realizar la paginación. Debemos introducir este ID en el payload para obtener la siguiente página de resultados.

Cuando este ID no varíe con respecto al anterior indica que la paginación ha finalizado y no disponemos de más resultados para descargar.

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"
}