CoverFi

Skip tracing API

A skip tracing API lets you do programmatically what a manual trace does one person at a time: start from the details you already hold — a name and stale address, a dead phone number, a bouncing email — and search consumer records for current contact information. If your team runs skip traces as part of collections, process serving, real-estate outreach, or asset recovery, an API turns hours of portal searches into a request inside your own workflow.

What the CoverFi API does

CoverFi exposes its records pipeline — 250M+ US consumers with address history, phones, emails, and name variants — as a credit-metered REST API:

Quick start

Create an API key in the dashboard, then:

curl "https://coverfi.com/api/orgs/{org_id}/records?q=Jane%20Rivera&state=TX" \
  -H "Authorization: Bearer sk_live_..."
import requests

resp = requests.get(
    "https://coverfi.com/api/orgs/{org_id}/records",
    params={"phone": "5125550142"},
    headers={"Authorization": "Bearer sk_live_..."},
)
for person in resp.json()["items"]:
    print(person["full_name"], person["state"], person["match_confidence"])

The full API reference covers authentication, every endpoint, and masking semantics; the same content ships as raw markdown at /docs/api.md for coding agents, plus an OpenAPI spec. Every error the API can return is documented in the error reference.

Pricing that fits batch work

There is no subscription and no per-seat fee. Searches cost 1 credit, full profiles 1 credit, household lookups 2 credits, and prepaid packs start at $25 for 50 credits (pricing). Three properties matter for skip-tracing workloads specifically:

Honest results, by design

Skip-trace data is only as good as its provenance signals. CoverFi returns them instead of hiding them: every profile shows when each phone, email, and address was last observed in the source data; results that matched through a relaxed tier are labeled with that tier; and a response-level banner states which of your typed criteria were not enforced. When the data disagrees with what you typed — a contact number now on file under a different name, for instance — the API says so rather than silently ranking it as a match.

CoverFi is an informational lookup service, not a consumer reporting agency: API access requires a permitted-use attestation, and FCRA-regulated eligibility uses are prohibited.

Related reading

Run a free identity check — no signup, no ID upload.