About
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.Generating an API key
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.
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.
Making a request
Endpoint
Headers
| Header | Value |
|---|---|
Authorization | Bearer gd_... |
Content-Type | application/json |
Example
Request body
The property address to look up.
Narrow the trace to a specific person or entity. If omitted, the API traces against whichever owner records are attached to the property.
Response
Skip-trace request ID.
Either
records_found or no_records_found.Array of matched owner records.
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.Errors
All errors return a JSON body of the shape:| HTTP | Code | Meaning |
|---|---|---|
| 401 | invalid_key | Missing, malformed, or revoked Bearer key. |
| 402 | insufficient_credits | Your organization has no skip-trace credits. Buy more in the Goliath app. |
| 403 | feature_unavailable | Your organization’s plan or trial does not currently permit skip tracing. |
| 422 | invalid_request | Request body failed validation, or the address could not be resolved. |
| 429 | rate_limited | Too many requests per minute. Back off for Retry-After seconds. |
| 429 | concurrency_limit | Too many in-flight requests from this key at once. |
| 504 | timeout | Skip trace did not complete within 30 seconds. Retry the request. |
| 500 | internal_error | Unexpected server error. Retry; contact support if it persists. |
Rate limits
- 1,000 requests per minute per API key.
- 10 concurrent requests per API key per server instance.
| Header | Meaning |
|---|---|
X-RateLimit-Limit | Requests allowed per window (1000). |
X-RateLimit-Remaining | Requests remaining in the current window. |
X-RateLimit-Reset | Unix timestamp when the window resets. |
Retry-After | Seconds to wait. Only set when you receive a 429. |
Credits and billing
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 return402 insufficient_credits. Buy more credits in the Goliath app under Billing → Credits and then retry the request.
Auto top-up is not supported yet. The API does not yet auto-purchase credits on your behalf. If you expect heavy usage, monitor your balance and top up in the app before you run out.
Frequently asked questions
How long does a request take?
How long does a request take?
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.Is the result cached?
Is the result cached?
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.
Can I use this from the browser?
Can I use this from the browser?
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.
What happens when I rotate the key?
What happens when I rotate the key?
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.Do you support property IDs as input?
Do you support property IDs as input?
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.