> ## Documentation Index
> Fetch the complete documentation index at: https://docs.goliathdata.com/llms.txt
> Use this file to discover all available pages before exploring further.

# SkipTrace

> The contact bundle attached directly to an owner — best available phones and emails for that person.

Used in: [Catalyst Property Event](/catalyst-event-webhooks) via `property.owners[].skipTrace`

## Fields

| Field    | Type                      | Description                            |
| -------- | ------------------------- | -------------------------------------- |
| `phones` | [Phone\[\]](/types/phone) | Phone numbers, ordered by confidence   |
| `emails` | [Email\[\]](/types/email) | Email addresses, ordered by confidence |

## Example

```json theme={null}
{
  "phones": [
    { "number": "5550000001", "type": "Mobile", "ranking": 1 },
    { "number": "5550000002", "type": "Residential", "ranking": 2 }
  ],
  "emails": [
    { "email": "john.doe@example.com", "ranking": 1 },
    { "email": "jd@example.com", "ranking": 2 }
  ]
}
```

## Notes

<Note>
  Both `phones` and `emails` may be empty arrays. Always check length before accessing index 0.
</Note>

<Note>
  This is the contact data scoped to the owner entry. For an expanded people graph that includes relatives, see [SkipTraceResult](/types/skip-trace-result).
</Note>
