0%
DISCOVER
SOURCES
CONNECTIONS
COVERAGE
SEARCH
ASSEMBLY
RESULT
API
CONTACT

FIND ANYONE.
ANYWHERE.

NAME
SCROLL TO DISCOVER

ONE QUERY.
BILLIONS OF
RECORDS.

Enter any identifier — a name, phone number, email, document, photo, or any combination. Our engine instantly scans billions of records across thousands of verified sources worldwide.

EXPLORE
SOURCES
COVERAGEWORLDWIDE
RECORDSBILLIONS
NATIONSALL REGIONS
STATUS● LIVE

CONNECTING
THE DOTS.

Records from different sources are automatically linked through shared identifiers. A phone number connects to an address. An address connects to a name. A name connects to everything else.

SEE HOW IT
WORKS

EVERY COUNTRY.
EVERY SOURCE.

Our data spans across all continents. Thousands of verified sources are normalized, cross-referenced, and continuously updated in real time.

EXPLORE
COVERAGE

FROM FRAGMENTS
TO FULL
PICTURE.

Every query triggers a cascade of cross-references. Thousands of fragmented records are matched, verified, and assembled into one coherent intelligence profile.

ONE COMPLETE
DOSSIER.

From billions of records, we extract what matters. One complete, verified, cross-referenced intelligence profile. Ready in seconds.

TRY IT
NOW
CONFIDENTIAL DS-2847-α
👤
J██████ D█████
🇺🇸 UNITED STATES  ·  ██.██.1985
RECORDS0
SOURCES0
CONF.0.0%
IDENTITY
VERIFIED
ADDRESSES
12 KNOWN
CONTACTS
8 ACTIVE
FINANCIAL
PARTIAL
08 // API ACCESS

BUILD ON THE
PLATFORM.

Integrate OSINT-grade person search into your applications via a simple REST API.

GET/v1/search/name
GET/v1/search/phone
GET/v1/search/email
GET/v1/search/id
REST / JSON 100 req/min $0.30 / query Bearer Auth
Get API Access View documentation ↗
curl \
  "https://api.global-search.at/v1/search/name?q=John+Smith" \
  -H "Authorization: Bearer gs_live_████████████████████████"
import requests

r = requests.get(
    "https://api.global-search.at/v1/search/name",
    headers={"Authorization": "Bearer gs_live_████████████████████████"},
    params={"q": "John Smith", "limit": 5}
)
data = r.json()
const res = await fetch(
  "https://api.global-search.at/v1/search/name?q=John+Smith&limit=5",
  { headers: { Authorization: "Bearer gs_live_████████████████████████" } }
);
const { data, meta } = await res.json();

200 OK application/json 142ms
{
  "data": [
    {
      "name":          "John Michael Smith",
      "date_of_birth": "15.03.1985",
      "gender":        "MALE",
      "phone":         ["████████████", "████████████"],
      "email":         ["j.████@████.com"],
      "address":       "████ Main St, Houston, Texas 77001",
      "source":        "US Voters 2022 [USA]"
    },
    {
      "name":          "John Smith",
      "date_of_birth": "15.03.1985",
      "gender":        "MALE",
      "phone":         ["████████████"],
      "email":         ["jsmith85@████.com", "j.smith@████corp.com"],
      "address":       "██ Oak Avenue, Chicago, Illinois 60601",
      "password_hash": "$2y$10$████████████████████████████████████████████████",
      "source":        "LinkedIn Scraped 2022 [GLOBAL]"
    },
    {
      "name":          "Jonathan Smith",
      "date_of_birth": "15.03.1985",
      "gender":        "MALE",
      "phone":         ["████████████"],
      "email":         ["jonathan.smith@████.co.uk"],
      "address":       "██ Threadneedle St, London EC2R",
      "source":        "Exactis 2018 [GLOBAL]"
    }
  ],
  "meta": {
    "total":      1247,
    "returned":  5,
    "cost_usd":  0.30
  }
}