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.

Base URL: https://notalivex.org/api
Protocol
HTTPS
All requests must use HTTPS
Format
JSON
All responses are JSON encoded
Method
GET
All search endpoints use GET
Encoding
UTF-8
URL-encode non-ASCII parameters

Quick 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
Security: Never expose your token in client-side code or public repos. Use environment variables or a server-side proxy.
  • 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"
}
The 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.

Global IP Limit
60/min
Per IP across all endpoints
AR Nombre Cooldown
4 min
Per user per identical name search
Response Headers
X-Rate*
Limit, Remaining, Reset
On 429
Backoff
Use exponential backoff + retry

Rate limit headers included in every response:

X-RateLimit-Limit: 60
X-RateLimit-Remaining: 45
X-RateLimit-Reset: 1700000060
Excessive automated requests may result in temporary rate limiting. Contact us if you need higher limits.

Error Codes

Common HTTP status codes returned by the API and their meanings.

CodeMeaningCause
200OKQuery successful, result returned
400Bad RequestInvalid or missing parameters
401UnauthorizedMissing or invalid x-api-token header
403ForbiddenToken lacks sufficient credits (β†’ top up)
404Not FoundNo results found for the given query
429Too Many RequestsRate limit exceeded (see Rate Limits)
500Server ErrorInternal error β€” retry later or contact support

Error Response Format

{
  "success": false,
  "message": "Detailed error description",
  "error_code": "ERROR_CODE"
}
Error CodeMeaning
INVALID_TOKENAPI token missing or invalid
INSUFFICIENT_CREDITSAccount has 0 credits
ACCOUNT_DISABLEDAccount suspended
RATE_LIMIT_EXCEEDEDToo many requests
CAPTCHA_REQUIREDCAPTCHA verification required (web only)
CAPTCHA_INVALIDInvalid or expired CAPTCHA token
NO_RESULTSSearch returned no matching records
Only HTTP 200 responses trigger a credit deduction. Errors are free.

Credits & Costs

Credits are deducted only on successful (HTTP 200) responses. Errors, 404s, and rate-limited requests do not deduct credits.

Note: /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).
CountryEndpointTypeCredits
πŸ‡²πŸ‡½ Mexico/api/mx/rfc/:rfcRFC 1
πŸ‡²πŸ‡½ Mexico/api/mx/curp/:curpCURP 1
πŸ‡²πŸ‡½ Mexico/api/mx/nombre/:nombreFull Name 1
πŸ‡²πŸ‡½ Mexico/api/mx/telefono/:telefonoPhone 1
πŸ‡²πŸ‡½ Mexico/api/mx/email/:emailEmail 1
πŸ‡²πŸ‡½ Mexico/api/mx/clave_elector/:claveClave Elector 1
πŸ‡²πŸ‡½ Mexico/api/mx/registro_ine/:registroRegistro INE 1
πŸ‡¦πŸ‡· Argentina/api/ar/dni/:dniDNI 0 web / 1 api
πŸ‡¦πŸ‡· Argentina/api/ar/telefono/:telefonoPhone 1
πŸ‡¦πŸ‡· Argentina/api/ar/email/:emailEmail 1
πŸ‡¦πŸ‡· Argentina/api/ar/patente/:patenteLicense Plate 1
πŸ‡¦πŸ‡· Argentina/api/ar/nombre/:nombreName (Nosis) 0 web / 1 api
πŸ‡¦πŸ‡· Argentina (RENAPER)/api/ar_rena/dni/:dniDNI [RENAPER] 2 web / 3 api
πŸ‡¦πŸ‡· Argentina (RENAPER)/api/ar_rena/renaper/:dni/:sexoDNI + 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/:rutRUT 1
πŸ‡¨πŸ‡± Chile/api/cl/nombre/:nombreName 1
πŸ‡¨πŸ‡± Chile/api/cl/telefono/:telefonoPhone 1
πŸ‡¨πŸ‡± Chile (LQC)/api/lqc/chile/busqueda?nombre_apellido=Name 4
πŸ‡§πŸ‡· Brazil/api/br/cpf/:cpfCPF 1
πŸ‡§πŸ‡· Brazil/api/br/nombre/:nombreName 1
πŸ‡§πŸ‡· Brazil/api/br/fone/:fonePhone 1
πŸ‡¨πŸ‡΄ Colombia/api/co/documento/:documentoDocumento 1
πŸ‡¨πŸ‡΄ Colombia/api/co/nombre/:nombreName 1
πŸ‡¨πŸ‡΄ Colombia/api/co/telefono/:telefonoPhone 1
πŸ‡¨πŸ‡΄ Colombia/api/co/email/:emailEmail 1
πŸ‡¨πŸ‡΄ Colombia 2/api/co2/cedula/:cedulaCΓ©dula 1
πŸ‡¨πŸ‡΄ Colombia 2/api/co2/nombre/:nombreName 1
πŸ‡¨πŸ‡΄ Colombia 2/api/co2/telefono/:telefonoPhone 1
πŸ‡¨πŸ‡΄ Colombia 2/api/co2/email/:emailEmail 1
πŸ‡΅πŸ‡ͺ Peru/api/pe/dni/:dniDNI 1
πŸ‡΅πŸ‡ͺ Peru/api/pe/nombre/:nombreName 1
πŸ‡΅πŸ‡ͺ Peru/api/pe/nombre2/:nombreName [DB2] 1
πŸ‡΅πŸ‡ͺ Peru/api/pe/telefono/:telefonoPhone 1
πŸ‡΅πŸ‡ͺ Peru/api/pe/placa/:placaLicense Plate 1
πŸ‡΅πŸ‡ͺ Peru/api/pe/email/:emailEmail 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/:cedulaCΓ©dula 1
πŸ‡ͺπŸ‡¨ Ecuador/api/ec/nombre/:nombreName 1
πŸ‡»πŸ‡ͺ Venezuela/api/ve/cedula/:cedulaCΓ©dula 1
πŸ‡»πŸ‡ͺ Venezuela/api/ve/nombre/:nombreName 1
πŸ‡ΊπŸ‡Ύ Uruguay/api/uy/cedula/:cedulaCΓ©dula 1
πŸ‡ΊπŸ‡Ύ Uruguay/api/uy/nombre/:nombreName 1
πŸ‡ΊπŸ‡Ύ Uruguay/api/uy/telefono/:telefonoPhone 1
πŸ‡ΊπŸ‡Ύ Uruguay/api/uy/email/:emailEmail 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/:documentoDocumento 1
πŸ‡§πŸ‡΄ Bolivia/api/bo/nombre/:nombreName 1
πŸ‡§πŸ‡΄ Bolivia/api/bo/telefono/:telefonoPhone 1
πŸ‡΅πŸ‡Ύ Paraguay/api/pa/cedula/:cedulaCΓ©dula 1
πŸ‡΅πŸ‡Ύ Paraguay/api/pa/nombre/:nombreName 1
πŸ‡΅πŸ‡Ύ Paraguay/api/pa/celular/:celularMobile 1
πŸ‡©πŸ‡΄ Dominican Rep./api/rd/cedula/:cedulaCΓ©dula 1
πŸ‡©πŸ‡΄ Dominican Rep./api/rd/nombre/:nombreName 1
πŸ‡ΈπŸ‡» El Salvador/api/sv/dui/:duiDUI 1
πŸ‡ΈπŸ‡» El Salvador/api/sv/nombre/:nombreName 1
πŸ‡ΈπŸ‡» El Salvador/api/sv/telefono/:telefonoPhone 1
πŸ‡ΈπŸ‡» El Salvador/api/sv/placa/:placaLicense Plate 1
πŸ‡ΈπŸ‡» El Salvador/api/sv/email/:emailEmail 1
πŸ‡¨πŸ‡¦ Canada/api/ca/email/:emailEmail 1
πŸ‡¨πŸ‡¦ Canada/api/ca/nombre/:nombreName 1
πŸ‡¨πŸ‡¦ Canada/api/ca/telefono/:telefonoPhone 1
πŸ‡ΊπŸ‡Έ USA/api/us/nombre/:nombreName 1
πŸ‡ΊπŸ‡Έ USA/api/us/telefono/:telefonoPhone 1
πŸ‡ΊπŸ‡Έ USA/api/us/email/:emailEmail 1
πŸ‡ͺπŸ‡Έ Spain/api/es/legal/:legalDNI / NIE / CIF 1
πŸ‡ͺπŸ‡Έ Spain/api/es/nombre/:nombreName 1
πŸ‡ͺπŸ‡Έ Spain/api/es/email/:emailEmail 1
πŸ‡ͺπŸ‡Έ Spain/api/es/telefono/:telefonoPhone 1
πŸ‡·πŸ‡Ί Russia/api/ru/nombre/:nombreName 1
πŸ‡·πŸ‡Ί Russia/api/ru/placa/:placaLicense Plate 1
πŸ‡·πŸ‡Ί Russia/api/ru/telefono/:telefonoPhone 1
πŸ‡·πŸ‡Ί Russia/api/ru/email/:emailEmail 1
πŸ‡΅πŸ‡­ Philippines/api/ph/nombre/:nombreName 1
πŸ‡΅πŸ‡­ Philippines/api/ph/telefono/:telefonoPhone 1
πŸ‡΅πŸ‡­ Philippines/api/ph/email/:emailEmail 1
Instagram DB/api/instagram/username/:usernameUsername 1
Instagram DB/api/instagram/email/:emailEmail 1
Instagram DB/api/instagram/telefono/:telefonoPhone 1
Telegram/api/tg/telefono/:telefonoPhone 1
Telegram/api/tg/id/:idTelegram ID 1
Telegram/api/tg/username/:usernameUsername 1
Telegram BH/api/osint/tg/username/:qUsername BH 1
Telegram BH/api/osint/tg/id/:qID BH 1
Telegram BH/api/osint/tg/phone/:qPhone BH 1
Instagram BH/api/osint/instagram/lookup/:usernameUsername 1
Discord/api/osint/dc/user/:useridUser BH 1
Discord/api/osint/dc/snowflake/:snowflakeSnowflake BH 1
Discord/api/osint/discord/cordcat/:userCordCat 1
Discord/api/osint/discord/seeknow/:userSeekNow 1
Discord/api/osint/discord/eyegod/:userEyeGod 1
Discord/api/osint/discord/oathnet/:userOathNet 1
Discord/api/osint/discord/seekria/:userSeekria 1
Discord/api/osint/cordcat/user/:userCordCat direct 1
Discord/api/osint/cordcat/invite/:codeInvite 1
Discord/api/osint/seeknow/discord/:userSeekNow direct 1
Discord/api/osint/seeknow/discord2rb/:userDiscord2Roblox 1
Discord/api/osint/seekria/discord_profile/:userSeekria Profile 1
Discord/api/osint/seekria/discord_rat/:userSeekria RAT 1
Discord/api/osint/datavoid/discord/:userDataVoid 1
Snapchat/api/osint/snapchat/lookup/:usernameUsername 1
TikTok/api/osint/tiktok/recon/:usernameRecon 1
TikTok/api/osint/seeknow/tiktok/:usernameSeekNow 1
GitHub/api/osint/github/osint/:usernameOSINT 1
GitHub/api/osint/seeknow/github/:usernameSeekNow 1
Twitter/X/api/osint/seeknow/twitter/:usernameSeekNow 1
Reddit/api/osint/seeknow/reddit/:usernameSeekNow 1
Social/api/osint/social/:usernameSocial Lookup 1
Social/api/osint/seeknow/social/:usernameSeekNow 1
Minecraft/api/osint/seekria/minecraft/:usernameSeekria 1
Minecraft/api/osint/oathnet/minecraft/:usernameOathNet 1
Minecraft/api/osint/seeknow/minecraft/:usernameSeekNow 1
Roblox/api/osint/seekria/roblox/:usernameSeekria 1
Roblox/api/osint/oathnet/roblox/:usernameOathNet 1
Roblox/api/osint/nbrs/roblox/:usernameNBRS 1
Roblox/api/osint/seeknow/roblox/:usernameSeekNow 1
Xbox/api/osint/oathnet/xbox/:gamertagOathNet 1
Xbox/api/osint/seeknow/xbox/:gamertagSeekNow 1
Xbox/api/osint/brhub/xbox/:gamertagBreachHub 1
Steam/api/osint/oathnet/steam/:steamidOathNet 1
Steam/api/osint/brhub/steam/:steamidBreachHub 1
FiveM/api/osint/seekria/fivem/:identifierSeekria 1
Medal.tv/api/osint/medal/lookup/:usernameUsername 1
Room101/api/osint/room101/user/:usernameUser 1
Room101/api/osint/room101/search/:querySearch 1
EyeGod/api/eg/v2/query/:type/:valueQuery 1

OSINT Tools & Breach Databases β€” all 1 credit each via the unified route /api/osint/:service/:type/:query:

ServiceSearch TypesExample
IntelVaultemail, stealer, breaches/api/osint/intelvault/email/:e
BreachBaseemail/api/osint/breachbase/email/:e
BreachDirectoryemail/api/osint/breachdirectory/email/:e
OSINTCatemail/api/osint/osintcat/email/:e
BreachVIPemail, phone, domain/api/osint/breachvip/email/:e
OSINTKitemail, phone/api/osint/osintkit/email/:e
Wentynemail, domain/api/osint/wentyn/email/:e
HudsonRockemail, domain, domain_overview, username, ip, keyword/api/osint/hudsonrock/email/:e
Seekriaemail_osint, email_breach, phone, domain, domain_username, footprint, ip, dns, discord_profile, roblox, minecraft, fivem/api/osint/seekria/email_osint/:e
LeakOsintemail/api/osint/leakosint/email/:e
LeakCheckemail/api/osint/leakcheck/email/:e
Snusbasedomain, combo, hash, ip/api/osint/snusbase/domain/:e
xOsintsearch/api/osint/xosint/search/:q
Melissalookup/api/osint/melissa/lookup/:q
LeakSightsearch/api/osint/leaksight/search/:q
OathNetholehe, ghunt, breach, stealer, roblox, steam, xbox, minecraft/api/osint/oathnet/holehe/:e
Inf0Secsearch/api/osint/inf0sec/search/:q
Shodanhost, search, dns, honeyscore/api/osint/shodan/host/:q
SeekNowdiscord, github, twitter, tiktok, reddit, social, xbox, roblox, minecraft, ip, email, phone, domain/api/osint/seeknow/discord/:q
DataVoidrecovery, us, discord, stealer, automotive/api/osint/datavoid/recovery/:q
Room101user, search/api/osint/room101/user/:q
CordCatuser, invite, ip/api/osint/cordcat/user/:q
SEONemail, phone, ip/api/osint/seon/email/:q
HackCheckcheck/api/osint/hackcheck/check/:q
Binlistlookup/api/osint/binlist/lookup/:q
IPinfolookup/api/osint/ipinfo/lookup/:q
VIN Decoderdecode/api/osint/vin/decode/:q
NBRSroblox/api/osint/nbrs/roblox/:q
Medal.tvlookup/api/osint/medal/lookup/:q
Google Docssearch/api/osint/brhub/google_docs/:q
PropertyRadarsearch/api/osint/propertyradar/search/:q
Instagram BHlookup/api/osint/instagram/lookup/:q
Snapchatlookup/api/osint/snapchat/lookup/:q
TikTokrecon/api/osint/tiktok/recon/:q
GitHubosint/api/osint/github/osint/:q
EyeGodv2/query/:type/:value/api/eg/v2/query/email/:e
Credits are only deducted on successful (200 OK) responses. Contact us on Discord to purchase credits.

πŸ‡²πŸ‡½ Mexico

Search Mexican records by RFC, CURP, Clave Elector, Registro INE, name, phone, or email.

GET/api/mx/rfc/:rfc 1 credit

Search by RFC (Registro Federal de Contribuyentes).

GET/api/mx/curp/:curp 1 credit

Search by CURP (Clave Única de Registro de Población).

GET/api/mx/clave_elector/:clave 1 credit

Search 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"
  }
}
GET/api/mx/registro_ine/:registro 1 credit

Search by Registro INE.

GET/api/mx/nombre/:nombre 1 credit

Search by full name. Returns multiple matching records.

GET/api/mx/telefono/:telefono 1 credit

Search by phone number.

GET/api/mx/email/:email 1 credit

Search by email address.

πŸ‡¦πŸ‡· Argentina

Primary source via Nosis. RENAPER source available for government-grade records with mandatory sex parameter.

GET/api/ar/dni/:dni 0 web / 1 api

Search 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"
  }
}
GET/api/ar/telefono/:telefono 1 credit

Search by phone number with area code.

GET/api/ar/email/:email 1 credit

Search by email address.

GET/api/ar/patente/:patente 1 credit

Search by license plate (Patente).

GET/api/ar/nombre/:nombre 0 web / 1 api

Search by full name via Nosis. Requires minimum 3 words with 4+ letters each. A 4-minute cooldown applies per user between searches.

GET/api/ar_rena/dni/:dni 2 web / 3 api

Search by DNI via RENAPER (National Registry).

GET/api/ar_rena/renaper/:dni/:sexo 2 web / 3 api

Search 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.

GET/api/lqc/argentina/informe?dni=12345678 4 credits

Full report by DNI.

GET/api/lqc/argentina/familiares?dni=12345678 4 credits

Relatives lookup by DNI.

GET/api/lqc/argentina/dni-telefono?dni=12345678 4 credits

Find phone numbers linked to a DNI.

GET/api/lqc/peru/telefono?telefono=51999123456 4 credits

Lookup owner info by phone number.

GET/api/lqc/argentina/deudas?dni=12345678 4 credits

Debt/credit history by DNI.

GET/api/lqc/argentina/vehiculo-patente?patente=AA123BB 4 credits

Vehicle info by license plate (Patente).

πŸ‡¨πŸ‡± Chile

Search Chilean records by RUT, name, or phone.

GET/api/cl/rut/:rut 1 credit

Search by RUT (Rol Único Tributario). Format: 12345678-9.

GET/api/cl/nombre/:nombre 1 credit

Search by full name.

GET/api/cl/telefono/:telefono 1 credit

Search by phone number.

LQC Chile (Enhanced)

Enhanced Chilean data via Latam Quality Consulting. Uses query parameters.

GET/api/lqc/chile/busqueda?nombre_apellido=JUAN+PEREZ 4 credits

Search by full name (nombre y apellido).

πŸ‡§πŸ‡· Brazil

Search Brazilian records by CPF, name, or phone.

GET/api/br/cpf/:cpf 1 credit

Search by CPF (Cadastro de Pessoas FΓ­sicas). Accepted: 123.456.789-00 or 12345678900.

GET/api/br/nombre/:nombre 1 credit

Search by full name.

GET/api/br/fone/:fone 1 credit

Search by phone number (fone).

πŸ‡¨πŸ‡΄ Colombia

Two independent sources available: co and co2. Try both if one returns no results.

GET/api/co/documento/:documento 1 credit

Search by national document (CΓ©dula de CiudadanΓ­a).

GET/api/co/nombre/:nombre 1 credit

Search by full name.

GET/api/co/telefono/:telefono 1 credit

Search by phone number.

GET/api/co/email/:email 1 credit

Search by email address.

Colombia 2 (alternate source)

GET/api/co2/cedula/:cedula 1 credit

Search by CΓ©dula [CO2].

GET/api/co2/nombre/:nombre 1 credit

Search by full name [CO2].

GET/api/co2/telefono/:telefono 1 credit

Search by phone [CO2].

GET/api/co2/email/:email 1 credit

Search by email [CO2].

πŸ‡΅πŸ‡ͺ Peru

Search Peruvian records by DNI, name (two sources), phone, license plate, or email.

GET/api/pe/dni/:dni 1 credit

Search by DNI (8-digit Peruvian national ID).

GET/api/pe/nombre/:nombre 1 credit

Search by full name.

GET/api/pe/nombre2/:nombre 1 credit

Search by full name via alternate database [DB2].

GET/api/pe/telefono/:telefono 1 credit

Search by phone number.

GET/api/pe/placa/:placa 1 credit

Search by license plate (Placa).

GET/api/pe/email/:email 1 credit

Search by email address.

LQC Peru (Enhanced)

Enhanced Peruvian data via Latam Quality Consulting. Uses query parameters.

GET/api/lqc/uruguay/busqueda?nombre_apellido=JUAN+PEREZ 4 credits

Search by full name.

GET/api/lqc/peru/informe?documento=12345678 4 credits

Full report by document number.

GET/api/lqc/peru/telefono?telefono=51999123456 4 credits

Lookup owner info by phone number.

πŸ‡ͺπŸ‡¨ Ecuador

GET/api/ec/cedula/:cedula 1 credit

Search by CΓ©dula (10-digit Ecuadorian national ID).

GET/api/ec/nombre/:nombre 1 credit

Search by full name.

πŸ‡»πŸ‡ͺ Venezuela

GET/api/ve/cedula/:cedula 1 credit

Search by CΓ©dula de Identidad. Include V- or E- prefix if applicable.

GET/api/ve/nombre/:nombre 1 credit

Search by full name.

πŸ‡ΊπŸ‡Ύ Uruguay

GET/api/uy/cedula/:cedula 1 credit

Search by CΓ©dula de Identidad.

GET/api/uy/nombre/:nombre 1 credit

Search by full name.

GET/api/uy/telefono/:telefono 1 credit

Search by phone number.

GET/api/uy/email/:email 1 credit

Search by email address.

LQC Uruguay (Enhanced)

Enhanced Uruguayan data via Latam Quality Consulting. Uses query parameters.

GET/api/lqc/uruguay/busqueda?nombre_apellido=JUAN+PEREZ 4 credits

Search by full name.

GET/api/lqc/uruguay/cedula?cedula=12345678 4 credits

Lookup by CΓ©dula de Identidad.

GET/api/lqc/uruguay/ceibal?cedula=12345678 4 credits

Ceibal platform lookup by CΓ©dula.

GET/api/lqc/uruguay/contactos?cedula=12345678 4 credits

Contact list by CΓ©dula.

GET/api/lqc/uruguay/familiares?cedula=12345678 4 credits

Relatives lookup by CΓ©dula.

GET/api/lqc/uruguay/informe?cedula=12345678 4 credits

Full report by CΓ©dula.

GET/api/lqc/uruguay/telefono-cedula?cedula=12345678 4 credits

Find phone numbers by CΓ©dula.

πŸ‡§πŸ‡΄ Bolivia

GET/api/bo/documento/:documento 1 credit

Search by national document number.

GET/api/bo/nombre/:nombre 1 credit

Search by full name.

GET/api/bo/telefono/:telefono 1 credit

Search by phone number.

πŸ‡΅πŸ‡Ύ Paraguay

GET/api/pa/cedula/:cedula 1 credit

Search by CΓ©dula (Paraguayan national ID).

GET/api/pa/nombre/:nombre 1 credit

Search by full name.

GET/api/pa/celular/:celular 1 credit

Search by mobile phone number.

πŸ‡©πŸ‡΄ Dominican Republic

GET/api/rd/cedula/:cedula 1 credit

Search by CΓ©dula.

GET/api/rd/nombre/:nombre 1 credit

Search by full name.

πŸ‡ΈπŸ‡» El Salvador

GET/api/sv/dui/:dui 1 credit

Search by DUI (Documento Único de Identidad).

GET/api/sv/nombre/:nombre 1 credit

Search by full name.

GET/api/sv/telefono/:telefono 1 credit

Search by phone number.

GET/api/sv/placa/:placa 1 credit

Search by license plate (Placa).

GET/api/sv/email/:email 1 credit

Search by email address.

πŸ‡¨πŸ‡¦ Canada

GET/api/ca/email/:email 1 credit

Search by email address.

GET/api/ca/nombre/:nombre 1 credit

Search by full name.

GET/api/ca/telefono/:telefono 1 credit

Search by phone number.

πŸ‡ΊπŸ‡Έ USA

GET/api/us/nombre/:nombre 1 credit

Search by full name.

GET/api/us/telefono/:telefono 1 credit

Search by phone number.

GET/api/us/email/:email 1 credit

Search by email address.

πŸ‡ͺπŸ‡Έ Spain

GET/api/es/legal/:legal 1 credit

Search by legal ID β€” accepts DNI, NIE, or CIF.

GET/api/es/nombre/:nombre 1 credit

Search by full name.

GET/api/es/email/:email 1 credit

Search by email address.

GET/api/es/telefono/:telefono 1 credit

Search by phone number.

πŸ‡·πŸ‡Ί Russia

GET/api/ru/nombre/:nombre 1 credit

Search by full name.

GET/api/ru/placa/:placa 1 credit

Search by license plate.

GET/api/ru/telefono/:telefono 1 credit

Search by phone number.

GET/api/ru/email/:email 1 credit

Search by email address.

πŸ‡΅πŸ‡­ Philippines

GET/api/ph/nombre/:nombre 1 credit

Search by full name.

GET/api/ph/telefono/:telefono 1 credit

Search by phone number.

GET/api/ph/email/:email 1 credit

Search by email address.

Instagram DB

Search Instagram account data by username, email, or phone number.

GET/api/instagram/username/:username 1 credit

Search by Instagram username (without @).

GET/api/instagram/email/:email 1 credit

Search by email address linked to an Instagram account.

GET/api/instagram/telefono/:telefono 1 credit

Search by phone number linked to an Instagram account.

Telegram

Search Telegram accounts by phone number, user ID, or username.

GET/api/tg/telefono/:telefono 1 credit

Search by phone number.

GET/api/tg/id/:id 1 credit

Search by Telegram user ID.

GET/api/tg/username/:username 1 credit

Search by Telegram username (without @).

Additional Telegram routes via unified OSINT:

RouteDescription
/api/osint/tg/username/:qTelegram username lookup (BreachHub)
/api/osint/tg/id/:qTelegram user ID lookup (BreachHub)
/api/osint/tg/phone/:qTelegram phone lookup (BreachHub)

Discord OSINT

Discord intelligence from multiple sources. Use /api/osint/discord/:service/:query or individual endpoints below.

GET/api/osint/discord/cordcat/:user 1 credit

Lookup Discord user via CordCat (user ID or snowflake).

GET/api/osint/discord/seeknow/:user 1 credit

Lookup Discord user via SeekNow.

GET/api/osint/discord/eyegod/:user 1 credit

Lookup Discord user via EyeGod.

GET/api/osint/discord/oathnet/:user 1 credit

Lookup Discord user via OathNet.

GET/api/osint/discord/seekria/:user 1 credit

Lookup Discord user via Seekria.

Additional Discord endpoints via the unified OSINT route:

RouteDescription
/api/osint/dc/user/:useridDiscord user lookup (BreachHub)
/api/osint/dc/snowflake/:snowflakeDecode Discord snowflake to timestamp
/api/osint/seekria/discord_profile/:userDiscord profile via Seekria
/api/osint/seekria/discord_rat/:userDiscord RAT lookup via Seekria
/api/osint/cordcat/user/:userDiscord user via CordCat
/api/osint/cordcat/invite/:codeDiscord invite via CordCat
/api/osint/seeknow/discord/:userDiscord user via SeekNow
/api/osint/seeknow/discord2rb/:userDiscord to Roblox via SeekNow
/api/osint/datavoid/discord/:userDiscord user via DataVoid

Instagram BH

Instagram lookup via BreachHub integration.

GET/api/osint/instagram/lookup/:username 1 credit

Lookup Instagram profile data by username.

GitHub OSINT

GET/api/osint/github/osint/:username 1 credit

Lookup GitHub profile and metadata by username.

GET/api/osint/seeknow/github/:username 1 credit

GitHub lookup via SeekNow.

TikTok OSINT

GET/api/osint/tiktok/recon/:username 1 credit

TikTok profile recon via BreachHub.

GET/api/osint/seeknow/tiktok/:username 1 credit

TikTok lookup via SeekNow.

Snapchat OSINT

GET/api/osint/snapchat/lookup/:username 1 credit

Lookup Snapchat profile data by username.

Twitter / X OSINT

GET/api/osint/seeknow/twitter/:username 1 credit

Twitter/X lookup via SeekNow.

Reddit OSINT

GET/api/osint/seeknow/reddit/:username 1 credit

Reddit lookup via SeekNow.

GET/api/osint/room101/user/:username 1 credit

Reddit user lookup via Room101.

GET/api/osint/room101/search/:query 1 credit

Reddit content search via Room101.

70+ Platforms

Check a username across 70+ social platforms simultaneously.

GET/api/osint/social/:username 1 credit

Look up a username across Instagram, Twitter/X, TikTok, GitHub, LinkedIn, Reddit, Twitch, Steam, Spotify, and 70+ more platforms.

Example Response

{
  "success": true,
  "username": "johndoe",
  "results": [
    { "platform": "Instagram", "status": "exists", "url": "https://instagram.com/johndoe" },
    { "platform": "GitHub",    "status": "exists", "url": "https://github.com/johndoe" },
    { "platform": "LinkedIn",  "status": "not_found", "url": null }
  ],
  "found_count": 2,
  "total_checked": 70
}
GET/api/osint/seeknow/social/:username 1 credit

Multi-platform social lookup via SeekNow.

OSINT Tools Overview

All OSINT tools and breach databases share a unified route pattern:

Pattern: GET /api/osint/:service/:type/:query

Where :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.

GET/api/osint/intelvault/email/:email 1 credit

Search breached accounts by email.

GET/api/osint/intelvault/stealer/:email 1 credit

Search stealer logs by email.

GET/api/osint/intelvault/breaches/:email 1 credit

Multi-source breach lookup by email.

BreachBase

GET/api/osint/breachbase/email/:email 1 credit

Search breached credentials by email.

BreachDirectory

GET/api/osint/breachdirectory/email/:email 1 credit

Search breached credentials by email.

OSINTCat

GET/api/osint/osintcat/email/:email 1 credit

Email breach lookup.

BreachVIP

GET/api/osint/breachvip/email/:email 1 credit

Search by email.

GET/api/osint/breachvip/phone/:phone 1 credit

Search by phone number.

GET/api/osint/breachvip/domain/:domain 1 credit

Search by domain.

OSINTKit

GET/api/osint/osintkit/email/:email 1 credit

Email intelligence lookup.

GET/api/osint/osintkit/phone/:phone 1 credit

Phone number intelligence lookup.

Wentyn

GET/api/osint/wentyn/email/:email 1 credit

Email breach search.

GET/api/osint/wentyn/domain/:domain 1 credit

Domain breach search.

HudsonRock

Comprehensive threat intelligence platform with multiple search types.

GET/api/osint/hudsonrock/email/:email 1 credit

Search by email.

GET/api/osint/hudsonrock/domain/:domain 1 credit

Search by domain.

GET/api/osint/hudsonrock/domain_overview/:domain 1 credit

Get domain overview.

GET/api/osint/hudsonrock/username/:username 1 credit

Search by username.

GET/api/osint/hudsonrock/ip/:ip 1 credit

Search by IP address.

GET/api/osint/hudsonrock/keyword/:keyword 1 credit

Search by keyword.

Seekria

Multi-purpose OSINT tool with email, phone, domain, IP, Discord, and gaming lookups.

GET/api/osint/seekria/email_osint/:email 1 credit

Email OSINT investigation.

GET/api/osint/seekria/email_breach/:email 1 credit

Email breach search.

GET/api/osint/seekria/phone/:phone 1 credit

Phone number lookup.

GET/api/osint/seekria/domain/:domain 1 credit

Domain intelligence.

GET/api/osint/seekria/domain_username/:domain 1 credit

Find usernames associated with a domain.

GET/api/osint/seekria/footprint/:email 1 credit

Digital footprint analysis by email.

GET/api/osint/seekria/ip/:ip 1 credit

IP address lookup.

GET/api/osint/seekria/dns/:domain 1 credit

DNS record lookup for domain.

GET/api/osint/seekria/discord_profile/:user 1 credit

Discord profile lookup.

LeakOsint

GET/api/osint/leakosint/email/:email 1 credit

Email breach lookup.

LeakCheck

GET/api/osint/leakcheck/email/:email 1 credit

Email breach check.

Snusbase

GET/api/osint/snusbase/domain/:domain 1 credit

Domain breach search.

GET/api/osint/snusbase/combo/:query 1 credit

Combo list search (email:password).

GET/api/osint/snusbase/hash/:hash 1 credit

Hash lookup.

GET/api/osint/snusbase/ip/:ip 1 credit

IP breach search.

xOsint

GET/api/osint/xosint/search/:query 1 credit

General OSINT search.

Melissa

GET/api/osint/melissa/lookup/:query 1 credit

Contact/identity data lookup.

LeakSight

GET/api/osint/leaksight/search/:query 1 credit

Leak data search.

OathNet

Multi-tool OSINT platform with email, gaming, and infrastructure lookups.

GET/api/osint/oathnet/holehe/:email 1 credit

Check if email is registered on various services (Holehe).

GET/api/osint/oathnet/ghunt/:email 1 credit

Google account lookup (GHunt).

GET/api/osint/oathnet/breach/:email 1 credit

Email breach search.

GET/api/osint/oathnet/stealer/:email 1 credit

Stealer log search.

Inf0Sec

GET/api/osint/inf0sec/search/:query 1 credit

Security/breach data search.

Shodan

Internet-connected device search engine.

GET/api/osint/shodan/host/:ip 1 credit

Lookup host details by IP.

GET/api/osint/shodan/search/:query 1 credit

Search Shodan by query.

GET/api/osint/shodan/dns/:domain 1 credit

DNS resolution for domain.

GET/api/osint/shodan/honeyscore/:ip 1 credit

Check if IP is a honeypot.

SeekNow

Multi-purpose OSINT platform supporting social, gaming, and contact lookups.

GET/api/osint/seeknow/discord/:user 1 credit

Discord user lookup.

GET/api/osint/seeknow/discord2rb/:user 1 credit

Discord to Roblox lookup.

GET/api/osint/seeknow/github/:username 1 credit

GitHub profile lookup.

GET/api/osint/seeknow/twitter/:username 1 credit

Twitter/X profile lookup.

GET/api/osint/seeknow/tiktok/:username 1 credit

TikTok profile lookup.

GET/api/osint/seeknow/reddit/:username 1 credit

Reddit profile lookup.

GET/api/osint/seeknow/social/:username 1 credit

Multi-platform social lookup.

GET/api/osint/seeknow/ip/:ip 1 credit

IP address lookup.

GET/api/osint/seeknow/email/:email 1 credit

Email lookup.

GET/api/osint/seeknow/phone/:phone 1 credit

Phone number lookup.

GET/api/osint/seeknow/domain/:domain 1 credit

Domain intelligence lookup.

GET/api/osint/seeknow/xbox/:gamertag 1 credit

Xbox gamertag lookup.

GET/api/osint/seeknow/roblox/:username 1 credit

Roblox profile lookup.

GET/api/osint/seeknow/minecraft/:username 1 credit

Minecraft profile lookup.

DataVoid

GET/api/osint/datavoid/recovery/:query 1 credit

Recovery data search.

GET/api/osint/datavoid/us/:query 1 credit

US data search.

GET/api/osint/datavoid/discord/:user 1 credit

Discord user lookup.

GET/api/osint/datavoid/stealer/:email 1 credit

Stealer log search by email.

GET/api/osint/datavoid/automotive/:vin 1 credit

Automotive/VIN lookup.

CordCat

GET/api/osint/cordcat/user/:user 1 credit

Discord user lookup by ID.

GET/api/osint/cordcat/invite/:code 1 credit

Discord invite info lookup.

GET/api/osint/cordcat/ip/:ip 1 credit

IP address lookup via CordCat.

SEON

GET/api/osint/seon/email/:email 1 credit

Email fraud risk assessment.

GET/api/osint/seon/phone/:phone 1 credit

Phone number fraud assessment.

GET/api/osint/seon/ip/:ip 1 credit

IP fraud risk assessment.

HackCheck

GET/api/osint/hackcheck/check/:email 1 credit

Check email for breaches.

Binlist

GET/api/osint/binlist/lookup/:bin 1 credit

BIN (Bank Identification Number) lookup for card details.

IPinfo

GET/api/osint/ipinfo/lookup/:ip 1 credit

IP geolocation and ISP data.

VIN Decoder

GET/api/osint/vin/decode/:vin 1 credit

Decode VIN to vehicle details.

Google Docs

GET/api/osint/brhub/google_docs/:query 1 credit

Search public Google Docs content.

EyeGod

Advanced OSINT query engine via EyeGod v2.

GET/api/eg/v2/query/:type/:value 1 credit

Query EyeGod by type (e.g., email, phone, username) and value.

PropertyRadar

GET/api/osint/propertyradar/search/:query 1 credit

US property records search.

Minecraft OSINT

Search Minecraft player profiles and account data.

GET/api/osint/seekria/minecraft/:username 1 credit

Minecraft profile via Seekria.

GET/api/osint/oathnet/minecraft/:username 1 credit

Minecraft profile via OathNet.

GET/api/osint/seeknow/minecraft/:username 1 credit

Minecraft profile via SeekNow.

Roblox OSINT

Search Roblox player profiles and linked accounts.

GET/api/osint/seekria/roblox/:username 1 credit

Roblox profile via Seekria.

GET/api/osint/oathnet/roblox/:username 1 credit

Roblox profile via OathNet.

GET/api/osint/nbrs/roblox/:username 1 credit

Roblox profile via NBRS.

GET/api/osint/seeknow/roblox/:username 1 credit

Roblox profile via SeekNow.

Xbox OSINT

GET/api/osint/oathnet/xbox/:gamertag 1 credit

Xbox gamertag via OathNet.

GET/api/osint/seeknow/xbox/:gamertag 1 credit

Xbox gamertag via SeekNow.

GET/api/osint/brhub/xbox/:gamertag 1 credit

Xbox gamertag via BreachHub.

Steam OSINT

GET/api/osint/oathnet/steam/:steamid 1 credit

Steam profile via OathNet (Steam ID or custom URL).

GET/api/osint/brhub/steam/:steamid 1 credit

Steam profile via BreachHub.

FiveM OSINT

GET/api/osint/seekria/fivem/:identifier 1 credit

FiveM player lookup via Seekria.

Medal.tv

GET/api/osint/medal/lookup/:username 1 credit

Medal.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.success before 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/dni and /api/ar/nombre cost 0 credits via the web dashboard.
  • Try Alternate Sources: For Colombia, use both co and co2 if one returns nothing. For Peru names, try nombre and nombre2.
  • Argentina Nombre: Must be at least 3 words with 4+ letters each. Respect the 4-minute cooldown.

Need Help?