Trace digital identities across 400+ platforms.
Enter a username, name, or email. We check 400+ platforms and stream every hit back in seconds.
Three steps. Zero setup.
Pick your lookup
Username, name, or email. Choose a search type and enter your query.
Watch results stream
Sources are checked in parallel. Hits appear the instant they’re confirmed.
Explore findings
Dig into profiles, cross-reference identities, filter results, and export.
One query. Every platform. In parallel.
Every platform queried in parallel. Every hit streams to your screen the instant it lands.
Results as they're found
Every platform checked independently. Results stream to your screen as they arrive.
Recursive discovery
Finds linked accounts by re-searching every discovered profile.
400+ platforms
Social, gaming, dev tools, forums.
Table & card views
Full profiles with followers, bios, and locations — browse in table or card layout.
Full audit trail
Every query logged and exportable. Built for compliance, accountability, and enterprise use.
A profile, not a link. Organized for review.
Bio, banner, follower counts, pinned repos, joined dates, sponsored orgs — we extract every field a platform exposes and render it inline. Open the banner, expand the bio, dig into raw fields. It's the real component, with real data.
try expanding +more fields→
Staff engineer · building tools that make the web a better place. Open-source maintainer of half a dozen packages you've probably used. Coffee, climbing, and CLI tools.
Location: Portland, OR
Email: [email protected]
Website: example.com
Joined: Mar 12, 2014
Last active: Apr 22, 2025
+7 more fields
pinned repos
organizations
We surface public data. We protect yours.
Every result comes from publicly available sources. Every search is encrypted, logged, and exportable.
Encrypted by default
All connections encrypted in transit. Data encrypted at rest using industry-standard methods.
Public data only
We only surface publicly available information. No hacking, no breaching, no unauthorized access.
Full audit trail
Every search logged and exportable. Built for regulatory compliance and internal oversight.
Compliance-ready
Designed to meet enterprise and government compliance requirements. Privacy-first architecture.
One GET.
Any platform.
Every platform we support sits behind a predictable URL: /v1/{platform}/{handle}. Plain HTTP, JSON in — no SDK, no client library, no abstractions in the way.
- Same enriched profiles the dashboard renders
- Predictable URLs - easy to cache, easy to debug
- Per-key auth with rate limits and audit logs
1package main2 3import (4 "fmt"5 "github.com/valyala/fasthttp"6)7 8func main() {9 req := fasthttp.AcquireRequest()10 res := fasthttp.AcquireResponse()11 defer fasthttp.ReleaseRequest(req)12 defer fasthttp.ReleaseResponse(res)13 14 req.SetRequestURI("https://api.fingerprint.to/v1/linkedin/johndoe")15 req.Header.Set("Authorization", "Bearer fp_live_xxxxxxxxxxxxxxxx")16 17 fasthttp.Do(req, res)18 fmt.Println(string(res.Body()))19}