apivault-skip-trace
Skip Trace & People Finder — Python SDK. Search by name, address, phone, or email. Returns addresses, phones, emails, relatives, aliases, and a match-confidence score.
US public records. Real-time. No subscription. $6.50/1K lookups.
Install
pip install apivault-skip-trace
Quick Start
from apivault_skip_trace import SkipTrace
st = SkipTrace("your_apify_token") # get token at apify.com/account#/integrations
# Search by name
results = st.search_name("John Smith", location="Springfield, IL")
for person in results:
print(person["fullName"], person.get("phones"), person.get("emails"))
# Reverse phone lookup
results = st.search_phone("(202) 555-0182")
# Reverse address lookup
results = st.search_address("123 Main St", "Springfield, IL 62704")
# Reverse email lookup
results = st.search_email("jane.doe@gmail.com")
# Bulk (mixed queries in one call)
results = st.bulk_search(
names=["John Smith; IL", "Jane Doe; NY"],
phones=["2025550182"],
emails=["test@example.com"],
)
What You Get Back
Each person dict contains:
| Field | Description |
|---|---|
fullName |
Full name |
firstName, lastName |
Parsed name components |
age, birthYear |
Age / birth year when available |
currentAddress |
Most recent address |
addresses |
All known addresses (current + past) |
phones |
Phone numbers with type (mobile/landline) |
emails |
Email addresses |
relatives |
Names of associated people |
aliases |
Also known as / maiden names |
matchScore |
Confidence score (0-100) |
bestEmail |
Top email (verified deliverable via MX) |
Pricing
- $6.50 per 1,000 lookups (Apify pay-per-event)
- Pay only for matches (empty results are free)
- No subscription, no monthly minimum
- Get $5 free credits at apify.com
Get Your API Token
- Sign up at apify.com (free)
- Go to Settings → Integrations
- Copy your API token
Use Cases
- Real estate — find property owners, skip trace vacant homes
- Debt collection — locate debtors with updated contact info
- Sales prospecting — enrich leads with phone + email
- Background checks — verify identity with addresses + relatives
- Fraud prevention — cross-reference provided info against public records
Links
- Apify Store — run in browser, no code
- API Docs — REST API reference
- n8n Node — no-code automation
License
MIT
Release files for apivault-skip-trace 0.1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| apivault_skip_trace-0.1.0.tar.gz | 5.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| apivault_skip_trace-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 11.3 kB
Release files / apivault_skip_trace-0.1.0.tar.gz
| Download URL | apivault_skip_trace-0.1.0.tar.gz |
|---|---|
| Size | 5.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
b46d0ad93f350a78a83f3be193262417cf6a5f7d029708e707361fdcb851f97f
|
|
BLAKE2b-256 checksum How to use checksums |
1870e65fab30eda54a82065d68905c75a85f4f5d447fbc6fb62708b11b651c98
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.12.10
|
Release files / apivault_skip_trace-0.1.0-py3-none-any.whl
| Download URL | apivault_skip_trace-0.1.0-py3-none-any.whl |
|---|---|
| Size | 6.1 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
34d8cdbd4b982aaedc81fb69f99962ab3299cfcccbd27bb9e42fee026370f01c
|
|
BLAKE2b-256 checksum How to use checksums |
dc372e9ec0bf945eb3dc41e7e2b6bd6a858f28616ed217bede29405967d73ef1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.12.10
|