IX-Plore
Módulo que te da acceso a información de Darknets, Documents, Dumpster, Leaks, Pastes, Web, Whois.
El consumo de este módulo será diario y se consumirán créditos por consulta y por visualización del documento.
Para utilizar el módulo IX-Plore necesitaremos realizar una primera petición al endpoint https://app.dotlake.io/api/search/ixplore.
Esto nos devolverá un ID en caso correcto (status=0) o un error (status=2)
Con este ID tendremos realizar peticiones al segundo endpoint https://app.dotlake.io/api/search/ixplore/results donde se recuperarán los resultados y podremos paginar hasta obtener el estado de parada (status=2)
This endpoint will return the id that we will later use to view the search results.
Authentication header. API token prefixed with 'token '
token API_TOKEN
Minimum date, as UNIX epoch, this date refers to sort_field date selected
1
Maximum date, as UNIX epoch, this date refers to sort_field date selected
9999999999
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"
},
"id": "text",
"status": 0
}
This endpoint will return all the results and will make recursive calls until the search status is 2.
Authentication header. API token prefixed with 'token '
token API_TOKEN
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\"))"}'
{
"Ctx": null,
"status": "text",
"text": "text",
"records": [
{
"item": {
"systemid": "text",
"storageid": "text",
"instore": null,
"size": 1,
"accesslevel": 1,
"type": 0,
"media": 0,
"added": "2025-06-30T20:45:46.378Z",
"date": "2025-06-30T20:45:46.378Z",
"name": "text",
"description": "text",
"xscore": 1,
"simhash": "text",
"bucket": "text",
"keyvalues": "text",
"tags": null,
"relations": null
},
"linea": "text",
"linearaw": "text",
"lineaafterraw": "text",
"lineabeforeraw": "text",
"positionabsolute": 1,
"positionline": 1,
"positionsize": 1
}
]
}
This endpoint will be used to download the entire files returned by the /ixplore/results endpoint.
Authentication header. API token prefixed with 'token '
token API_TOKEN
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": "text"
}
Last updated