API Documentation
Complete reference for the NOTALIVEX OSINT API. Search across 15+ countries, social media platforms, 50+ OSINT/breach tools, and gaming networks. All requests require authentication via API token.
Getting Started
The NOTALIVEX API provides programmatic access to OSINT data. All responses are JSON.
https://notalivex.org/apiQuick Start
1. Register at notalivex.org/register.
2. Get your API token from the Dashboard.
3. Include the token in every request header.
curl -H "x-api-token: YOUR_TOKEN" \
"https://notalivex.org/api/mx/clave_elector/ABCD123456HDFXYZ01"
const response = await fetch(
"https://notalivex.org/api/mx/clave_elector/ABCD123456HDFXYZ01",
{ headers: { "x-api-token": "YOUR_TOKEN" } }
);
const data = await response.json();
console.log(data);
import requests
headers = {"x-api-token": "YOUR_TOKEN"}
r = requests.get(
"https://notalivex.org/api/mx/clave_elector/ABCD123456HDFXYZ01",
headers=headers
)
print(r.json())
require 'net/http'
require 'json'
require 'uri'
uri = URI("https://notalivex.org/api/mx/clave_elector/ABCD123456HDFXYZ01")
req = Net::HTTP::Get.new(uri)
req["x-api-token"] = "YOUR_TOKEN"
res = Net::HTTP.start(uri.host, uri.port, use_ssl: true) { |http| http.request(req) }
puts JSON.parse(res.body)
$ch = curl_init("https://notalivex.org/api/mx/clave_elector/ABCD123456HDFXYZ01");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-api-token: YOUR_TOKEN"]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
$data = json_decode($response, true);
print_r($data);
package main
import (
"fmt"
"io"
"net/http"
)
func main() {
req, _ := http.NewRequest("GET", "https://notalivex.org/api/mx/clave_elector/ABCD123456HDFXYZ01", nil)
req.Header.Set("x-api-token", "YOUR_TOKEN")
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}
use reqwest;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let client = reqwest::Client::new();
let resp = client
.get("https://notalivex.org/api/mx/clave_elector/ABCD123456HDFXYZ01")
.header("x-api-token", "YOUR_TOKEN")
.send()
.await?
.text()
.await?;
println!("{}", resp);
Ok(())
}
Authentication
Every API request must include your API token via the x-api-token header.
x-api-token: YOUR_API_TOKEN_HERE
- Tokens do not expire β regenerate from the dashboard if compromised.
- Both web dashboard and API token requests consume credits per successful query.
- Two Argentina endpoints (
/api/ar/dni,/api/ar/nombre) are free via the web dashboard only.
Response Format
All API endpoints return JSON with a consistent envelope structure.
Success Response
{
"success": true,
"data": {
"key": "value",
...
}
}
Error Response
{
"success": false,
"error": "Descriptive error message"
}
success boolean indicates whether the query completed without errors. When false, an error string describes the issue. Credits are only deducted when success is true.Rate Limits
Rate limits vary per endpoint to ensure fair usage and protect upstream data sources.
Rate limit headers included in every response:
X-RateLimit-Limit: 60
X-RateLimit-Remaining: 45
X-RateLimit-Reset: 1700000060
Error Codes
Common HTTP status codes returned by the API and their meanings.
| Code | Meaning | Cause |
|---|---|---|
| 200 | OK | Query successful, result returned |
| 400 | Bad Request | Invalid or missing parameters |
| 401 | Unauthorized | Missing or invalid x-api-token header |
| 403 | Forbidden | Token lacks sufficient credits (β top up) |
| 404 | Not Found | No results found for the given query |
| 429 | Too Many Requests | Rate limit exceeded (see Rate Limits) |
| 500 | Server Error | Internal error β retry later or contact support |
Error Response Format
{
"success": false,
"message": "Detailed error description",
"error_code": "ERROR_CODE"
}
| Error Code | Meaning |
|---|---|
INVALID_TOKEN | API token missing or invalid |
INSUFFICIENT_CREDITS | Account has 0 credits |
ACCOUNT_DISABLED | Account suspended |
RATE_LIMIT_EXCEEDED | Too many requests |
CAPTCHA_REQUIRED | CAPTCHA verification required (web only) |
CAPTCHA_INVALID | Invalid or expired CAPTCHA token |
NO_RESULTS | Search returned no matching records |
Credits & Costs
Credits are deducted only on successful (HTTP 200) responses. Errors, 404s, and rate-limited requests do not deduct credits.
/api/ar/dni and /api/ar/nombre are free via web dashboard (cost 0). Via API token they cost 1 credit. RENAPER endpoints cost 2 credits (web) or 3 credits (API).| Country | Endpoint | Type | Credits |
|---|---|---|---|
| π²π½ Mexico | /api/mx/rfc/:rfc | RFC | 1 |
| π²π½ Mexico | /api/mx/curp/:curp | CURP | 1 |
| π²π½ Mexico | /api/mx/nombre/:nombre | Full Name | 1 |
| π²π½ Mexico | /api/mx/telefono/:telefono | Phone | 1 |
| π²π½ Mexico | /api/mx/email/:email | 1 | |
| π²π½ Mexico | /api/mx/clave_elector/:clave | Clave Elector | 1 |
| π²π½ Mexico | /api/mx/registro_ine/:registro | Registro INE | 1 |
| π¦π· Argentina | /api/ar/dni/:dni | DNI | 0 web / 1 api |
| π¦π· Argentina | /api/ar/telefono/:telefono | Phone | 1 |
| π¦π· Argentina | /api/ar/email/:email | 1 | |
| π¦π· Argentina | /api/ar/patente/:patente | License Plate | 1 |
| π¦π· Argentina | /api/ar/nombre/:nombre | Name (Nosis) | 0 web / 1 api |
| π¦π· Argentina (RENAPER) | /api/ar_rena/dni/:dni | DNI [RENAPER] | 2 web / 3 api |
| π¦π· Argentina (RENAPER) | /api/ar_rena/renaper/:dni/:sexo | DNI + Sex | 2 web / 3 api |
| π¦π· Argentina (LQC) | /api/lqc/argentina/informe?dni= | Full Report | 4 |
| π¦π· Argentina (LQC) | /api/lqc/argentina/familiares?dni= | Relatives | 4 |
| π¦π· Argentina (LQC) | /api/lqc/argentina/dni-telefono?dni= | DNI-Phone | 4 |
| π¦π· Argentina (LQC) | /api/lqc/argentina/telefono?telefono= | Phone | 4 |
| π¦π· Argentina (LQC) | /api/lqc/argentina/deudas?dni= | Debts | 4 |
| π¦π· Argentina (LQC) | /api/lqc/argentina/vehiculo-patente?patente= | Vehicle by Plate | 4 |
| π¨π± Chile | /api/cl/rut/:rut | RUT | 1 |
| π¨π± Chile | /api/cl/nombre/:nombre | Name | 1 |
| π¨π± Chile | /api/cl/telefono/:telefono | Phone | 1 |
| π¨π± Chile (LQC) | /api/lqc/chile/busqueda?nombre_apellido= | Name | 4 |
| π§π· Brazil | /api/br/cpf/:cpf | CPF | 1 |
| π§π· Brazil | /api/br/nombre/:nombre | Name | 1 |
| π§π· Brazil | /api/br/fone/:fone | Phone | 1 |
| π¨π΄ Colombia | /api/co/documento/:documento | Documento | 1 |
| π¨π΄ Colombia | /api/co/nombre/:nombre | Name | 1 |
| π¨π΄ Colombia | /api/co/telefono/:telefono | Phone | 1 |
| π¨π΄ Colombia | /api/co/email/:email | 1 | |
| π¨π΄ Colombia 2 | /api/co2/cedula/:cedula | CΓ©dula | 1 |
| π¨π΄ Colombia 2 | /api/co2/nombre/:nombre | Name | 1 |
| π¨π΄ Colombia 2 | /api/co2/telefono/:telefono | Phone | 1 |
| π¨π΄ Colombia 2 | /api/co2/email/:email | 1 | |
| π΅πͺ Peru | /api/pe/dni/:dni | DNI | 1 |
| π΅πͺ Peru | /api/pe/nombre/:nombre | Name | 1 |
| π΅πͺ Peru | /api/pe/nombre2/:nombre | Name [DB2] | 1 |
| π΅πͺ Peru | /api/pe/telefono/:telefono | Phone | 1 |
| π΅πͺ Peru | /api/pe/placa/:placa | License Plate | 1 |
| π΅πͺ Peru | /api/pe/email/:email | 1 | |
| π΅πͺ Peru (LQC) | /api/lqc/peru/busqueda?nombres= | Name | 4 |
| π΅πͺ Peru (LQC) | /api/lqc/peru/informe?documento= | Full Report | 4 |
| π΅πͺ Peru (LQC) | /api/lqc/peru/telefono?telefono= | Phone | 4 |
| πͺπ¨ Ecuador | /api/ec/cedula/:cedula | CΓ©dula | 1 |
| πͺπ¨ Ecuador | /api/ec/nombre/:nombre | Name | 1 |
| π»πͺ Venezuela | /api/ve/cedula/:cedula | CΓ©dula | 1 |
| π»πͺ Venezuela | /api/ve/nombre/:nombre | Name | 1 |
| πΊπΎ Uruguay | /api/uy/cedula/:cedula | CΓ©dula | 1 |
| πΊπΎ Uruguay | /api/uy/nombre/:nombre | Name | 1 |
| πΊπΎ Uruguay | /api/uy/telefono/:telefono | Phone | 1 |
| πΊπΎ Uruguay | /api/uy/email/:email | 1 | |
| πΊπΎ Uruguay (LQC) | /api/lqc/uruguay/busqueda?nombre_apellido= | Name | 4 |
| πΊπΎ Uruguay (LQC) | /api/lqc/uruguay/cedula?cedula= | CΓ©dula | 4 |
| πΊπΎ Uruguay (LQC) | /api/lqc/uruguay/ceibal?cedula= | Ceibal | 4 |
| πΊπΎ Uruguay (LQC) | /api/lqc/uruguay/contactos?cedula= | Contacts | 4 |
| πΊπΎ Uruguay (LQC) | /api/lqc/uruguay/familiares?cedula= | Relatives | 4 |
| πΊπΎ Uruguay (LQC) | /api/lqc/uruguay/informe?cedula= | Full Report | 4 |
| πΊπΎ Uruguay (LQC) | /api/lqc/uruguay/telefono-cedula?cedula= | Phone by CΓ©dula | 4 |
| π§π΄ Bolivia | /api/bo/documento/:documento | Documento | 1 |
| π§π΄ Bolivia | /api/bo/nombre/:nombre | Name | 1 |
| π§π΄ Bolivia | /api/bo/telefono/:telefono | Phone | 1 |
| π΅πΎ Paraguay | /api/pa/cedula/:cedula | CΓ©dula | 1 |
| π΅πΎ Paraguay | /api/pa/nombre/:nombre | Name | 1 |
| π΅πΎ Paraguay | /api/pa/celular/:celular | Mobile | 1 |
| π©π΄ Dominican Rep. | /api/rd/cedula/:cedula | CΓ©dula | 1 |
| π©π΄ Dominican Rep. | /api/rd/nombre/:nombre | Name | 1 |
| πΈπ» El Salvador | /api/sv/dui/:dui | DUI | 1 |
| πΈπ» El Salvador | /api/sv/nombre/:nombre | Name | 1 |
| πΈπ» El Salvador | /api/sv/telefono/:telefono | Phone | 1 |
| πΈπ» El Salvador | /api/sv/placa/:placa | License Plate | 1 |
| πΈπ» El Salvador | /api/sv/email/:email | 1 | |
| π¨π¦ Canada | /api/ca/email/:email | 1 | |
| π¨π¦ Canada | /api/ca/nombre/:nombre | Name | 1 |
| π¨π¦ Canada | /api/ca/telefono/:telefono | Phone | 1 |
| πΊπΈ USA | /api/us/nombre/:nombre | Name | 1 |
| πΊπΈ USA | /api/us/telefono/:telefono | Phone | 1 |
| πΊπΈ USA | /api/us/email/:email | 1 | |
| πͺπΈ Spain | /api/es/legal/:legal | DNI / NIE / CIF | 1 |
| πͺπΈ Spain | /api/es/nombre/:nombre | Name | 1 |
| πͺπΈ Spain | /api/es/email/:email | 1 | |
| πͺπΈ Spain | /api/es/telefono/:telefono | Phone | 1 |
| π·πΊ Russia | /api/ru/nombre/:nombre | Name | 1 |
| π·πΊ Russia | /api/ru/placa/:placa | License Plate | 1 |
| π·πΊ Russia | /api/ru/telefono/:telefono | Phone | 1 |
| π·πΊ Russia | /api/ru/email/:email | 1 | |
| π΅π Philippines | /api/ph/nombre/:nombre | Name | 1 |
| π΅π Philippines | /api/ph/telefono/:telefono | Phone | 1 |
| π΅π Philippines | /api/ph/email/:email | 1 | |
| Instagram DB | /api/instagram/username/:username | Username | 1 |
| Instagram DB | /api/instagram/email/:email | 1 | |
| Instagram DB | /api/instagram/telefono/:telefono | Phone | 1 |
| Telegram | /api/tg/telefono/:telefono | Phone | 1 |
| Telegram | /api/tg/id/:id | Telegram ID | 1 |
| Telegram | /api/tg/username/:username | Username | 1 |
| Telegram BH | /api/osint/tg/username/:q | Username BH | 1 |
| Telegram BH | /api/osint/tg/id/:q | ID BH | 1 |
| Telegram BH | /api/osint/tg/phone/:q | Phone BH | 1 |
| Instagram BH | /api/osint/instagram/lookup/:username | Username | 1 |
| Discord | /api/osint/dc/user/:userid | User BH | 1 |
| Discord | /api/osint/dc/snowflake/:snowflake | Snowflake BH | 1 |
| Discord | /api/osint/discord/cordcat/:user | CordCat | 1 |
| Discord | /api/osint/discord/seeknow/:user | SeekNow | 1 |
| Discord | /api/osint/discord/eyegod/:user | EyeGod | 1 |
| Discord | /api/osint/discord/oathnet/:user | OathNet | 1 |
| Discord | /api/osint/discord/seekria/:user | Seekria | 1 |
| Discord | /api/osint/cordcat/user/:user | CordCat direct | 1 |
| Discord | /api/osint/cordcat/invite/:code | Invite | 1 |
| Discord | /api/osint/seeknow/discord/:user | SeekNow direct | 1 |
| Discord | /api/osint/seeknow/discord2rb/:user | Discord2Roblox | 1 |
| Discord | /api/osint/seekria/discord_profile/:user | Seekria Profile | 1 |
| Discord | /api/osint/seekria/discord_rat/:user | Seekria RAT | 1 |
| Discord | /api/osint/datavoid/discord/:user | DataVoid | 1 |
| Snapchat | /api/osint/snapchat/lookup/:username | Username | 1 |
| TikTok | /api/osint/tiktok/recon/:username | Recon | 1 |
| TikTok | /api/osint/seeknow/tiktok/:username | SeekNow | 1 |
| GitHub | /api/osint/github/osint/:username | OSINT | 1 |
| GitHub | /api/osint/seeknow/github/:username | SeekNow | 1 |
| Twitter/X | /api/osint/seeknow/twitter/:username | SeekNow | 1 |
/api/osint/seeknow/reddit/:username | SeekNow | 1 | |
| Social | /api/osint/social/:username | Social Lookup | 1 |
| Social | /api/osint/seeknow/social/:username | SeekNow | 1 |
| Minecraft | /api/osint/seekria/minecraft/:username | Seekria | 1 |
| Minecraft | /api/osint/oathnet/minecraft/:username | OathNet | 1 |
| Minecraft | /api/osint/seeknow/minecraft/:username | SeekNow | 1 |
| Roblox | /api/osint/seekria/roblox/:username | Seekria | 1 |
| Roblox | /api/osint/oathnet/roblox/:username | OathNet | 1 |
| Roblox | /api/osint/nbrs/roblox/:username | NBRS | 1 |
| Roblox | /api/osint/seeknow/roblox/:username | SeekNow | 1 |
| Xbox | /api/osint/oathnet/xbox/:gamertag | OathNet | 1 |
| Xbox | /api/osint/seeknow/xbox/:gamertag | SeekNow | 1 |
| Xbox | /api/osint/brhub/xbox/:gamertag | BreachHub | 1 |
| Steam | /api/osint/oathnet/steam/:steamid | OathNet | 1 |
| Steam | /api/osint/brhub/steam/:steamid | BreachHub | 1 |
| FiveM | /api/osint/seekria/fivem/:identifier | Seekria | 1 |
| Medal.tv | /api/osint/medal/lookup/:username | Username | 1 |
| Room101 | /api/osint/room101/user/:username | User | 1 |
| Room101 | /api/osint/room101/search/:query | Search | 1 |
| EyeGod | /api/eg/v2/query/:type/:value | Query | 1 |
OSINT Tools & Breach Databases β all 1 credit each via the unified route /api/osint/:service/:type/:query:
| Service | Search Types | Example |
|---|---|---|
| IntelVault | email, stealer, breaches | /api/osint/intelvault/email/:e |
| BreachBase | /api/osint/breachbase/email/:e | |
| BreachDirectory | /api/osint/breachdirectory/email/:e | |
| OSINTCat | /api/osint/osintcat/email/:e | |
| BreachVIP | email, phone, domain | /api/osint/breachvip/email/:e |
| OSINTKit | email, phone | /api/osint/osintkit/email/:e |
| Wentyn | email, domain | /api/osint/wentyn/email/:e |
| HudsonRock | email, domain, domain_overview, username, ip, keyword | /api/osint/hudsonrock/email/:e |
| Seekria | email_osint, email_breach, phone, domain, domain_username, footprint, ip, dns, discord_profile, roblox, minecraft, fivem | /api/osint/seekria/email_osint/:e |
| LeakOsint | /api/osint/leakosint/email/:e | |
| LeakCheck | /api/osint/leakcheck/email/:e | |
| Snusbase | domain, combo, hash, ip | /api/osint/snusbase/domain/:e |
| xOsint | search | /api/osint/xosint/search/:q |
| Melissa | lookup | /api/osint/melissa/lookup/:q |
| LeakSight | search | /api/osint/leaksight/search/:q |
| OathNet | holehe, ghunt, breach, stealer, roblox, steam, xbox, minecraft | /api/osint/oathnet/holehe/:e |
| Inf0Sec | search | /api/osint/inf0sec/search/:q |
| Shodan | host, search, dns, honeyscore | /api/osint/shodan/host/:q |
| SeekNow | discord, github, twitter, tiktok, reddit, social, xbox, roblox, minecraft, ip, email, phone, domain | /api/osint/seeknow/discord/:q |
| DataVoid | recovery, us, discord, stealer, automotive | /api/osint/datavoid/recovery/:q |
| Room101 | user, search | /api/osint/room101/user/:q |
| CordCat | user, invite, ip | /api/osint/cordcat/user/:q |
| SEON | email, phone, ip | /api/osint/seon/email/:q |
| HackCheck | check | /api/osint/hackcheck/check/:q |
| Binlist | lookup | /api/osint/binlist/lookup/:q |
| IPinfo | lookup | /api/osint/ipinfo/lookup/:q |
| VIN Decoder | decode | /api/osint/vin/decode/:q |
| NBRS | roblox | /api/osint/nbrs/roblox/:q |
| Medal.tv | lookup | /api/osint/medal/lookup/:q |
| Google Docs | search | /api/osint/brhub/google_docs/:q |
| PropertyRadar | search | /api/osint/propertyradar/search/:q |
| Instagram BH | lookup | /api/osint/instagram/lookup/:q |
| Snapchat | lookup | /api/osint/snapchat/lookup/:q |
| TikTok | recon | /api/osint/tiktok/recon/:q |
| GitHub | osint | /api/osint/github/osint/:q |
| EyeGod | v2/query/:type/:value | /api/eg/v2/query/email/:e |
π²π½ Mexico
Search Mexican records by RFC, CURP, Clave Elector, Registro INE, name, phone, or email.
/api/mx/rfc/:rfc 1 creditSearch by RFC (Registro Federal de Contribuyentes).
/api/mx/curp/:curp 1 creditSearch by CURP (Clave Γnica de Registro de PoblaciΓ³n).
/api/mx/clave_elector/:clave 1 creditSearch by Clave Elector (INE voter ID).
Example Response
{
"success": true,
"data": {
"CLAVE_ELECTOR": "ABCD123456HDFXYZ01",
"NOM_COMPLETO": "JUAN PEREZ GARCIA",
"FECHA_NACIMIENTO": "1990-01-15",
"SEXO": "H",
"CALLE": "AV REVOLUCION 123",
"COLONIA": "CENTRO",
"MUNICIPIO": "GUADALAJARA",
"ESTADO": "JALISCO",
"CP": "44100"
}
}
/api/mx/registro_ine/:registro 1 creditSearch by Registro INE.
/api/mx/nombre/:nombre 1 creditSearch by full name. Returns multiple matching records.
/api/mx/telefono/:telefono 1 creditSearch by phone number.
/api/mx/email/:email 1 creditSearch by email address.
π¦π· Argentina
Primary source via Nosis. RENAPER source available for government-grade records with mandatory sex parameter.
/api/ar/dni/:dni 0 web / 1 apiSearch by DNI (Documento Nacional de Identidad).
Example Response
{
"success": true,
"data": {
"dni": "12345678",
"nombre": "MARIA GONZALEZ",
"fecha_nacimiento": "1985-03-20",
"domicilio": "AV CORRIENTES 1234",
"provincia": "BUENOS AIRES"
}
}
/api/ar/telefono/:telefono 1 creditSearch by phone number with area code.
/api/ar/email/:email 1 creditSearch by email address.
/api/ar/patente/:patente 1 creditSearch by license plate (Patente).
/api/ar/nombre/:nombre 0 web / 1 apiSearch by full name via Nosis. Requires minimum 3 words with 4+ letters each. A 4-minute cooldown applies per user between searches.
/api/ar_rena/dni/:dni 2 web / 3 apiSearch by DNI via RENAPER (National Registry).
/api/ar_rena/renaper/:dni/:sexo 2 web / 3 apiSearch by DNI + Sex via RENAPER. Sex must be M or F.
Example
GET /api/ar_rena/renaper/12345678/M
LQC Argentina (Enhanced)
Enhanced Argentine data via Latam Quality Consulting. Uses query parameters.
/api/lqc/argentina/informe?dni=12345678 4 creditsFull report by DNI.
/api/lqc/argentina/familiares?dni=12345678 4 creditsRelatives lookup by DNI.
/api/lqc/argentina/dni-telefono?dni=12345678 4 creditsFind phone numbers linked to a DNI.
/api/lqc/peru/telefono?telefono=51999123456 4 creditsLookup owner info by phone number.
/api/lqc/argentina/deudas?dni=12345678 4 creditsDebt/credit history by DNI.
/api/lqc/argentina/vehiculo-patente?patente=AA123BB 4 creditsVehicle info by license plate (Patente).
π¨π± Chile
Search Chilean records by RUT, name, or phone.
/api/cl/rut/:rut 1 creditSearch by RUT (Rol Γnico Tributario). Format: 12345678-9.
/api/cl/nombre/:nombre 1 creditSearch by full name.
/api/cl/telefono/:telefono 1 creditSearch by phone number.
LQC Chile (Enhanced)
Enhanced Chilean data via Latam Quality Consulting. Uses query parameters.
/api/lqc/chile/busqueda?nombre_apellido=JUAN+PEREZ 4 creditsSearch by full name (nombre y apellido).
π§π· Brazil
Search Brazilian records by CPF, name, or phone.
/api/br/cpf/:cpf 1 creditSearch by CPF (Cadastro de Pessoas FΓsicas). Accepted: 123.456.789-00 or 12345678900.
/api/br/nombre/:nombre 1 creditSearch by full name.
/api/br/fone/:fone 1 creditSearch by phone number (fone).
π¨π΄ Colombia
Two independent sources available: co and co2. Try both if one returns no results.
/api/co/documento/:documento 1 creditSearch by national document (CΓ©dula de CiudadanΓa).
/api/co/nombre/:nombre 1 creditSearch by full name.
/api/co/telefono/:telefono 1 creditSearch by phone number.
/api/co/email/:email 1 creditSearch by email address.
Colombia 2 (alternate source)
/api/co2/cedula/:cedula 1 creditSearch by CΓ©dula [CO2].
/api/co2/nombre/:nombre 1 creditSearch by full name [CO2].
/api/co2/telefono/:telefono 1 creditSearch by phone [CO2].
/api/co2/email/:email 1 creditSearch by email [CO2].
π΅πͺ Peru
Search Peruvian records by DNI, name (two sources), phone, license plate, or email.
/api/pe/dni/:dni 1 creditSearch by DNI (8-digit Peruvian national ID).
/api/pe/nombre/:nombre 1 creditSearch by full name.
/api/pe/nombre2/:nombre 1 creditSearch by full name via alternate database [DB2].
/api/pe/telefono/:telefono 1 creditSearch by phone number.
/api/pe/placa/:placa 1 creditSearch by license plate (Placa).
/api/pe/email/:email 1 creditSearch by email address.
LQC Peru (Enhanced)
Enhanced Peruvian data via Latam Quality Consulting. Uses query parameters.
/api/lqc/uruguay/busqueda?nombre_apellido=JUAN+PEREZ 4 creditsSearch by full name.
/api/lqc/peru/informe?documento=12345678 4 creditsFull report by document number.
/api/lqc/peru/telefono?telefono=51999123456 4 creditsLookup owner info by phone number.
πͺπ¨ Ecuador
/api/ec/cedula/:cedula 1 creditSearch by CΓ©dula (10-digit Ecuadorian national ID).
/api/ec/nombre/:nombre 1 creditSearch by full name.
π»πͺ Venezuela
/api/ve/cedula/:cedula 1 creditSearch by CΓ©dula de Identidad. Include V- or E- prefix if applicable.
/api/ve/nombre/:nombre 1 creditSearch by full name.
πΊπΎ Uruguay
/api/uy/cedula/:cedula 1 creditSearch by CΓ©dula de Identidad.
/api/uy/nombre/:nombre 1 creditSearch by full name.
/api/uy/telefono/:telefono 1 creditSearch by phone number.
/api/uy/email/:email 1 creditSearch by email address.
LQC Uruguay (Enhanced)
Enhanced Uruguayan data via Latam Quality Consulting. Uses query parameters.
/api/lqc/uruguay/busqueda?nombre_apellido=JUAN+PEREZ 4 creditsSearch by full name.
/api/lqc/uruguay/cedula?cedula=12345678 4 creditsLookup by CΓ©dula de Identidad.
/api/lqc/uruguay/ceibal?cedula=12345678 4 creditsCeibal platform lookup by CΓ©dula.
/api/lqc/uruguay/contactos?cedula=12345678 4 creditsContact list by CΓ©dula.
/api/lqc/uruguay/familiares?cedula=12345678 4 creditsRelatives lookup by CΓ©dula.
/api/lqc/uruguay/informe?cedula=12345678 4 creditsFull report by CΓ©dula.
/api/lqc/uruguay/telefono-cedula?cedula=12345678 4 creditsFind phone numbers by CΓ©dula.
π§π΄ Bolivia
/api/bo/documento/:documento 1 creditSearch by national document number.
/api/bo/nombre/:nombre 1 creditSearch by full name.
/api/bo/telefono/:telefono 1 creditSearch by phone number.
π΅πΎ Paraguay
/api/pa/cedula/:cedula 1 creditSearch by CΓ©dula (Paraguayan national ID).
/api/pa/nombre/:nombre 1 creditSearch by full name.
/api/pa/celular/:celular 1 creditSearch by mobile phone number.
π©π΄ Dominican Republic
/api/rd/cedula/:cedula 1 creditSearch by CΓ©dula.
/api/rd/nombre/:nombre 1 creditSearch by full name.
πΈπ» El Salvador
/api/sv/dui/:dui 1 creditSearch by DUI (Documento Γnico de Identidad).
/api/sv/nombre/:nombre 1 creditSearch by full name.
/api/sv/telefono/:telefono 1 creditSearch by phone number.
/api/sv/placa/:placa 1 creditSearch by license plate (Placa).
/api/sv/email/:email 1 creditSearch by email address.
π¨π¦ Canada
/api/ca/email/:email 1 creditSearch by email address.
/api/ca/nombre/:nombre 1 creditSearch by full name.
/api/ca/telefono/:telefono 1 creditSearch by phone number.
πΊπΈ USA
/api/us/nombre/:nombre 1 creditSearch by full name.
/api/us/telefono/:telefono 1 creditSearch by phone number.
/api/us/email/:email 1 creditSearch by email address.
πͺπΈ Spain
/api/es/legal/:legal 1 creditSearch by legal ID β accepts DNI, NIE, or CIF.
/api/es/nombre/:nombre 1 creditSearch by full name.
/api/es/email/:email 1 creditSearch by email address.
/api/es/telefono/:telefono 1 creditSearch by phone number.
π·πΊ Russia
/api/ru/nombre/:nombre 1 creditSearch by full name.
/api/ru/placa/:placa 1 creditSearch by license plate.
/api/ru/telefono/:telefono 1 creditSearch by phone number.
/api/ru/email/:email 1 creditSearch by email address.
π΅π Philippines
/api/ph/nombre/:nombre 1 creditSearch by full name.
/api/ph/telefono/:telefono 1 creditSearch by phone number.
/api/ph/email/:email 1 creditSearch by email address.
Instagram DB
Search Instagram account data by username, email, or phone number.
/api/instagram/username/:username 1 creditSearch by Instagram username (without @).
/api/instagram/email/:email 1 creditSearch by email address linked to an Instagram account.
/api/instagram/telefono/:telefono 1 creditSearch by phone number linked to an Instagram account.
Telegram
Search Telegram accounts by phone number, user ID, or username.
/api/tg/telefono/:telefono 1 creditSearch by phone number.
/api/tg/id/:id 1 creditSearch by Telegram user ID.
/api/tg/username/:username 1 creditSearch by Telegram username (without @).
Additional Telegram routes via unified OSINT:
| Route | Description |
|---|---|
/api/osint/tg/username/:q | Telegram username lookup (BreachHub) |
/api/osint/tg/id/:q | Telegram user ID lookup (BreachHub) |
/api/osint/tg/phone/:q | Telegram phone lookup (BreachHub) |
Discord OSINT
Discord intelligence from multiple sources. Use /api/osint/discord/:service/:query or individual endpoints below.
/api/osint/discord/cordcat/:user 1 creditLookup Discord user via CordCat (user ID or snowflake).
/api/osint/discord/seeknow/:user 1 creditLookup Discord user via SeekNow.
/api/osint/discord/eyegod/:user 1 creditLookup Discord user via EyeGod.
/api/osint/discord/oathnet/:user 1 creditLookup Discord user via OathNet.
/api/osint/discord/seekria/:user 1 creditLookup Discord user via Seekria.
Additional Discord endpoints via the unified OSINT route:
| Route | Description |
|---|---|
/api/osint/dc/user/:userid | Discord user lookup (BreachHub) |
/api/osint/dc/snowflake/:snowflake | Decode Discord snowflake to timestamp |
/api/osint/seekria/discord_profile/:user | Discord profile via Seekria |
/api/osint/seekria/discord_rat/:user | Discord RAT lookup via Seekria |
/api/osint/cordcat/user/:user | Discord user via CordCat |
/api/osint/cordcat/invite/:code | Discord invite via CordCat |
/api/osint/seeknow/discord/:user | Discord user via SeekNow |
/api/osint/seeknow/discord2rb/:user | Discord to Roblox via SeekNow |
/api/osint/datavoid/discord/:user | Discord user via DataVoid |
Instagram BH
Instagram lookup via BreachHub integration.
/api/osint/instagram/lookup/:username 1 creditLookup Instagram profile data by username.
GitHub OSINT
/api/osint/github/osint/:username 1 creditLookup GitHub profile and metadata by username.
/api/osint/seeknow/github/:username 1 creditGitHub lookup via SeekNow.
TikTok OSINT
/api/osint/tiktok/recon/:username 1 creditTikTok profile recon via BreachHub.
/api/osint/seeknow/tiktok/:username 1 creditTikTok lookup via SeekNow.
Snapchat OSINT
/api/osint/snapchat/lookup/:username 1 creditLookup Snapchat profile data by username.
Twitter / X OSINT
/api/osint/seeknow/twitter/:username 1 creditTwitter/X lookup via SeekNow.
Reddit OSINT
/api/osint/seeknow/reddit/:username 1 creditReddit lookup via SeekNow.
/api/osint/room101/user/:username 1 creditReddit user lookup via Room101.
/api/osint/room101/search/:query 1 creditReddit content search via Room101.
OSINT Tools Overview
All OSINT tools and breach databases share a unified route pattern:
GET /api/osint/:service/:type/:queryWhere :service is the service name, :type is the search type, and :query is the search term (URL-encoded). All endpoints cost 1 credit per successful request.
Example
curl -H "x-api-token: YOUR_TOKEN" \
"https://notalivex.org/api/osint/intelvault/email/[email protected]"
Below are all available OSINT tools organized alphabetically. Each shows the :service/:type values to use.
IntelVault
Email breach intelligence and stealer log data.
/api/osint/intelvault/email/:email 1 creditSearch breached accounts by email.
/api/osint/intelvault/stealer/:email 1 creditSearch stealer logs by email.
/api/osint/intelvault/breaches/:email 1 creditMulti-source breach lookup by email.
BreachBase
/api/osint/breachbase/email/:email 1 creditSearch breached credentials by email.
BreachDirectory
/api/osint/breachdirectory/email/:email 1 creditSearch breached credentials by email.
OSINTCat
/api/osint/osintcat/email/:email 1 creditEmail breach lookup.
BreachVIP
/api/osint/breachvip/email/:email 1 creditSearch by email.
/api/osint/breachvip/phone/:phone 1 creditSearch by phone number.
/api/osint/breachvip/domain/:domain 1 creditSearch by domain.
OSINTKit
/api/osint/osintkit/email/:email 1 creditEmail intelligence lookup.
/api/osint/osintkit/phone/:phone 1 creditPhone number intelligence lookup.
Wentyn
/api/osint/wentyn/email/:email 1 creditEmail breach search.
/api/osint/wentyn/domain/:domain 1 creditDomain breach search.
HudsonRock
Comprehensive threat intelligence platform with multiple search types.
/api/osint/hudsonrock/email/:email 1 creditSearch by email.
/api/osint/hudsonrock/domain/:domain 1 creditSearch by domain.
/api/osint/hudsonrock/domain_overview/:domain 1 creditGet domain overview.
/api/osint/hudsonrock/username/:username 1 creditSearch by username.
/api/osint/hudsonrock/ip/:ip 1 creditSearch by IP address.
/api/osint/hudsonrock/keyword/:keyword 1 creditSearch by keyword.
Seekria
Multi-purpose OSINT tool with email, phone, domain, IP, Discord, and gaming lookups.
/api/osint/seekria/email_osint/:email 1 creditEmail OSINT investigation.
/api/osint/seekria/email_breach/:email 1 creditEmail breach search.
/api/osint/seekria/phone/:phone 1 creditPhone number lookup.
/api/osint/seekria/domain/:domain 1 creditDomain intelligence.
/api/osint/seekria/domain_username/:domain 1 creditFind usernames associated with a domain.
/api/osint/seekria/footprint/:email 1 creditDigital footprint analysis by email.
/api/osint/seekria/ip/:ip 1 creditIP address lookup.
/api/osint/seekria/dns/:domain 1 creditDNS record lookup for domain.
/api/osint/seekria/discord_profile/:user 1 creditDiscord profile lookup.
LeakOsint
/api/osint/leakosint/email/:email 1 creditEmail breach lookup.
LeakCheck
/api/osint/leakcheck/email/:email 1 creditEmail breach check.
Snusbase
/api/osint/snusbase/domain/:domain 1 creditDomain breach search.
/api/osint/snusbase/combo/:query 1 creditCombo list search (email:password).
/api/osint/snusbase/hash/:hash 1 creditHash lookup.
/api/osint/snusbase/ip/:ip 1 creditIP breach search.
xOsint
/api/osint/xosint/search/:query 1 creditGeneral OSINT search.
Melissa
/api/osint/melissa/lookup/:query 1 creditContact/identity data lookup.
LeakSight
/api/osint/leaksight/search/:query 1 creditLeak data search.
OathNet
Multi-tool OSINT platform with email, gaming, and infrastructure lookups.
/api/osint/oathnet/holehe/:email 1 creditCheck if email is registered on various services (Holehe).
/api/osint/oathnet/ghunt/:email 1 creditGoogle account lookup (GHunt).
/api/osint/oathnet/breach/:email 1 creditEmail breach search.
/api/osint/oathnet/stealer/:email 1 creditStealer log search.
Inf0Sec
/api/osint/inf0sec/search/:query 1 creditSecurity/breach data search.
Shodan
Internet-connected device search engine.
/api/osint/shodan/host/:ip 1 creditLookup host details by IP.
/api/osint/shodan/search/:query 1 creditSearch Shodan by query.
/api/osint/shodan/dns/:domain 1 creditDNS resolution for domain.
/api/osint/shodan/honeyscore/:ip 1 creditCheck if IP is a honeypot.
SeekNow
Multi-purpose OSINT platform supporting social, gaming, and contact lookups.
/api/osint/seeknow/discord/:user 1 creditDiscord user lookup.
/api/osint/seeknow/discord2rb/:user 1 creditDiscord to Roblox lookup.
/api/osint/seeknow/github/:username 1 creditGitHub profile lookup.
/api/osint/seeknow/twitter/:username 1 creditTwitter/X profile lookup.
/api/osint/seeknow/tiktok/:username 1 creditTikTok profile lookup.
/api/osint/seeknow/reddit/:username 1 creditReddit profile lookup.
/api/osint/seeknow/social/:username 1 creditMulti-platform social lookup.
/api/osint/seeknow/ip/:ip 1 creditIP address lookup.
/api/osint/seeknow/email/:email 1 creditEmail lookup.
/api/osint/seeknow/phone/:phone 1 creditPhone number lookup.
/api/osint/seeknow/domain/:domain 1 creditDomain intelligence lookup.
/api/osint/seeknow/xbox/:gamertag 1 creditXbox gamertag lookup.
/api/osint/seeknow/roblox/:username 1 creditRoblox profile lookup.
/api/osint/seeknow/minecraft/:username 1 creditMinecraft profile lookup.
DataVoid
/api/osint/datavoid/recovery/:query 1 creditRecovery data search.
/api/osint/datavoid/us/:query 1 creditUS data search.
/api/osint/datavoid/discord/:user 1 creditDiscord user lookup.
/api/osint/datavoid/stealer/:email 1 creditStealer log search by email.
/api/osint/datavoid/automotive/:vin 1 creditAutomotive/VIN lookup.
CordCat
/api/osint/cordcat/user/:user 1 creditDiscord user lookup by ID.
/api/osint/cordcat/invite/:code 1 creditDiscord invite info lookup.
/api/osint/cordcat/ip/:ip 1 creditIP address lookup via CordCat.
SEON
/api/osint/seon/email/:email 1 creditEmail fraud risk assessment.
/api/osint/seon/phone/:phone 1 creditPhone number fraud assessment.
/api/osint/seon/ip/:ip 1 creditIP fraud risk assessment.
HackCheck
/api/osint/hackcheck/check/:email 1 creditCheck email for breaches.
Binlist
/api/osint/binlist/lookup/:bin 1 creditBIN (Bank Identification Number) lookup for card details.
IPinfo
/api/osint/ipinfo/lookup/:ip 1 creditIP geolocation and ISP data.
VIN Decoder
/api/osint/vin/decode/:vin 1 creditDecode VIN to vehicle details.
Google Docs
/api/osint/brhub/google_docs/:query 1 creditSearch public Google Docs content.
EyeGod
Advanced OSINT query engine via EyeGod v2.
/api/eg/v2/query/:type/:value 1 creditQuery EyeGod by type (e.g., email, phone, username) and value.
PropertyRadar
/api/osint/propertyradar/search/:query 1 creditUS property records search.
Minecraft OSINT
Search Minecraft player profiles and account data.
/api/osint/seekria/minecraft/:username 1 creditMinecraft profile via Seekria.
/api/osint/oathnet/minecraft/:username 1 creditMinecraft profile via OathNet.
/api/osint/seeknow/minecraft/:username 1 creditMinecraft profile via SeekNow.
Roblox OSINT
Search Roblox player profiles and linked accounts.
/api/osint/seekria/roblox/:username 1 creditRoblox profile via Seekria.
/api/osint/oathnet/roblox/:username 1 creditRoblox profile via OathNet.
/api/osint/nbrs/roblox/:username 1 creditRoblox profile via NBRS.
/api/osint/seeknow/roblox/:username 1 creditRoblox profile via SeekNow.
Xbox OSINT
/api/osint/oathnet/xbox/:gamertag 1 creditXbox gamertag via OathNet.
/api/osint/seeknow/xbox/:gamertag 1 creditXbox gamertag via SeekNow.
/api/osint/brhub/xbox/:gamertag 1 creditXbox gamertag via BreachHub.
Steam OSINT
/api/osint/oathnet/steam/:steamid 1 creditSteam profile via OathNet (Steam ID or custom URL).
/api/osint/brhub/steam/:steamid 1 creditSteam profile via BreachHub.
FiveM OSINT
/api/osint/seekria/fivem/:identifier 1 creditFiveM player lookup via Seekria.
Medal.tv
/api/osint/medal/lookup/:username 1 creditMedal.tv clip/profile lookup by username.
Best Practices
- Secure Your Token: Use environment variables. Never commit it to source control.
- URL-encode Parameters: Always encode names and non-ASCII characters (spaces β
%20). - Handle All Status Codes: Always check
data.successbefore using results. - Cache Results: Cache successful responses to avoid redundant credit consumption.
- Implement Backoff: On 429, use exponential backoff β don't hammer the API.
- Free AR Endpoints:
/api/ar/dniand/api/ar/nombrecost 0 credits via the web dashboard. - Try Alternate Sources: For Colombia, use both
coandco2if one returns nothing. For Peru names, trynombreandnombre2. - Argentina Nombre: Must be at least 3 words with 4+ letters each. Respect the 4-minute cooldown.
Need Help?
- Join our Discord or Telegram for real-time support and to purchase credits
- Check your balance and token in the Dashboard
- Review our Terms of Service and Privacy Policy
70+ Platforms
Check a username across 70+ social platforms simultaneously.
/api/osint/social/:username1 creditLook up a username across Instagram, Twitter/X, TikTok, GitHub, LinkedIn, Reddit, Twitch, Steam, Spotify, and 70+ more platforms.
Example Response
/api/osint/seeknow/social/:username1 creditMulti-platform social lookup via SeekNow.