# Sociologic AI Skip Trace Lookup

> Sociologic AI Skip Trace Lookup is a paid API for AI agents from trace.sociologic.ai, paid per call via x402, $0.12/call, status unknown (last checked 2026-09-13).

Performs a skip trace lookup to find contact information (phones, emails) and optionally discover the owner of a given address

## Facts

- Endpoint: POST https://trace.sociologic.ai/trace
- Price: $0.12/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sociologic-ai-skip-trace-lookup-7071c899
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eYqiqqyP-lyTB7BKHOomS

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability sociologic-ai-skip-trace-lookup-7071c899 -d '<json body>'
```

Example prompt: Can you skip trace 742 Evergreen Terrace, Springfield, IL 62704 — I want to find the owner's name, phone number, and email address?

## When to prefer this

Use this endpoint when you need to find contact information (phones, emails) for a person or property owner given a physical address, or when you need to identify who owns or resides at a specific address. Especially useful for real estate research, lead generation, or locating individuals. If you already have the person's full name and want to skip owner discovery, set find_owner to false and supply first_name and last_name directly.

## Known failure modes

- No results found for the provided address or name combination
- Missing required fields: first_name and last_name are required when find_owner is false
- Invalid state abbreviation or malformed address
- Address not found in skip trace database
- Payment failure or insufficient USDC balance (x402 payment required)
- Rate limiting or quota exceeded

## How this service works

Skip trace lookup - find phones, emails, and optionally owner info

## Output

Returns contact information associated with the provided address or person, including phone numbers and email addresses, and optionally the name of the property owner or resident discovered through skip trace lookup.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "zip": {
   "type": "string",
   "description": "ZIP code (optional)"
  },
  "city": {
   "type": "string",
   "description": "City"
  },
  "state": {
   "type": "string",
   "description": "State abbreviation"
  },
  "address": {
   "type": "string",
   "description": "Street address"
  },
  "last_name": {
   "type": "string",
   "description": "Last name (required when find_owner is false)"
  },
  "find_owner": {
   "type": "boolean",
   "default": true,
   "description": "Set to false to skip owner discovery; first_name and last_name become required"
  },
  "first_name": {
   "type": "string",
   "description": "First name (required when find_owner is false)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sociologic-ai-skip-trace-lookup-7071c899/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from trace.sociologic.ai](https://www.zero.xyz/host/trace.sociologic.ai/llms.txt)
