Skip to content

Skip Trace API

The Skip Trace API lets you run skip traces from your own code — any server, script, or third-party tool that can make HTTPS requests. Send an address (and optionally a person or entity name), receive the matched owner records — phones, emails, and names — in the same response. Each call consumes one skip-trace credit from your organization’s balance, the same way an in-app skip trace does.

This is a server-to-server API. Keep your key secret. Never ship it in a browser, mobile app, or any client-side code.

  1. Open the Integrations page. From the left sidebar, click Integrations under the Automations section.

  2. Find the Skip Trace API card. It lives under the Developer section. The card is only visible to organization admins — if you do not see it, ask an admin to generate a key for you.

  3. Click Generate API key. Goliath shows your new key once, in a dialog. Copy it now and store it in your secrets manager — the full key is never shown again. After you close the dialog, only the first and last characters are visible in the UI.

  4. Use the key. Pass it as a Bearer token on every request: Authorization: Bearer gd_...

POST https://api.goliathdata.com/api/v1/skiptrace
HeaderValue
AuthorizationBearer gd_...
Content-Typeapplication/json
Terminal window
curl -X POST https://api.goliathdata.com/api/v1/skiptrace \
-H "Authorization: Bearer gd_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"address": {
"line1": "123 Main St",
"city": "Austin",
"state": "TX",
"zip": "78701"
}
}'
// Node.js (fetch)
const res = await fetch("https://api.goliathdata.com/api/v1/skiptrace", {
method: "POST",
headers: {
Authorization: `Bearer ${process.env.GOLIATH_API_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
address: {
line1: "123 Main St",
city: "Austin",
state: "TX",
zip: "78701",
},
}),
})
const data = await res.json()
FieldTypeRequiredDescription
address.line1stringyesStreet address.
address.line2stringnoApartment, unit, suite.
address.citystringyesCity name.
address.statestring (2)yesTwo-letter USPS state abbreviation (e.g. TX, CA).
address.zipstringyesZIP code. Five or nine digits.
actorobjectnoNarrow the trace to a specific person or entity. See below.
actor.typeperson / entityyes (if actor set)
actor.firstNamestringperson onlyFirst name.
actor.lastNamestringperson onlyLast name.
actor.namestringentity onlyEntity / company name.

If actor is omitted, the API traces against whichever owner records are attached to the property. If actor is provided, results are narrowed to matches for that specific person or entity.

200 OK:

{
"id": "3f21d6e0-a8a4-4a0e-8f25-9e9a74c37c2e",
"status": "records_found",
"persons": [
{
"firstName": "Jane",
"lastName": "Doe",
"middleName": null,
"age": 47,
"phones": [
{ "number": "5125551234", "type": "mobile" },
{ "number": "5125559999", "type": "residential" }
],
"emails": ["jane@example.com"]
}
]
}
FieldType
idSkip-trace request ID.
statusrecords_found or no_records_found.
persons[].firstNameFirst name or null.
persons[].lastNameLast name or null.
persons[].middleNameMiddle name or null.
persons[].ageApproximate age or null.
persons[].phones[]{ number, type }. Type is mobile, residential, or unknown.
persons[].emails[]Array of email strings.

A status of no_records_found means the address and actor were valid but no owner records were located. Credits are still consumed in this case — the work to look up records has already happened.

All errors return a JSON body of the shape:

{ "error": { "code": "insufficient_credits", "message": "..." } }
HTTPCodeMeaning
401invalid_keyMissing, malformed, or revoked Bearer key.
402insufficient_creditsYour organization has no skip-trace credits. Buy more in the Goliath app.
403feature_unavailableYour organization’s plan or trial does not currently permit skip tracing.
422invalid_requestRequest body failed validation, or the address could not be resolved.
429rate_limitedToo many requests per minute. Back off for Retry-After seconds.
429concurrency_limitToo many in-flight requests from this key at once.
504timeoutSkip trace did not complete within 30 seconds. Retry the request.
500internal_errorUnexpected server error. Retry; contact support if it persists.
  • 1,000 requests per minute per API key.
  • 10 concurrent requests per API key per server instance.

Every response includes:

HeaderMeaning
X-RateLimit-LimitRequests allowed per window (1000).
X-RateLimit-RemainingRequests remaining in the current window.
X-RateLimit-ResetUnix timestamp when the window resets.
Retry-AfterSeconds to wait. Only set when you receive a 429.

Each successful skip-trace call consumes one SKIPTRACE credit from your organization’s balance. This is the same credit pool as in-app skip traces — running either path debits the same bucket.

When your balance hits zero, subsequent calls return 402 insufficient_credits. Buy more credits in the Goliath app under Billing → Credits and then retry the request.

Most calls complete in a few seconds. The server will wait up to 30 seconds for the pipeline to terminate before returning 504 timeout. Retrying a timed-out request is safe and will return the cached result if one has since been produced.

Yes. Repeat calls for the same address + actor combination return the cached result from the previous successful trace, without triggering another provider call. Credits are still consumed for each call.

No. API keys are org-level secrets. Anyone with the key can run traces and burn your credits. Keep it on your server and never expose it to client code.

The old secret stops working immediately. Any systems still using it start receiving 401 invalid_key on their next request. Update them with the new secret before rotating if you can coordinate the switch.

No. The public API only accepts street addresses. Property IDs are internal identifiers that change over time and aren’t safe to expose on a stable public surface.