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

# Recommended Inputs

> Best practices for input data to maximize results

For the `/api/individual_reveals` endpoint, provide **one of** the following input options per request. Different inputs offer varying levels of coverage and accuracy and are listed below from highest to lowest.

1. **Profile URL** **(strongly recommended)** - Provides the highest performing results
2. **Full name + company domain and/or company name** - Including a company domain improves match accuracy, as domains are unique while company names may have duplicates. This option provides the next best-performing results.
3. **Email address** - Use only if other input options are unavailable

***

## Payload Examples

### Option 1: Profile URL

```json theme={"dark"}
{
  "individual_reveal": {
    "profile_url": "https://www.linkedin.com/in/stephen-hakami-5babb21b0/"
  },
  "enrichment_level": "partial"
}
```

### Option 2: Full Name + Company Domain

```json theme={"dark"}
{
  "individual_reveal": {
    "full_name": "Stephen Hakami",
    "domain": "wiza.co"
  },
  "enrichment_level": "partial"
}
```

### Option 2b: Full Name + Company Name

```json theme={"dark"}
{
  "individual_reveal": {
    "full_name": "Stephen Hakami",
    "company": "Wiza"
  },
  "enrichment_level": "partial"
}
```

### Option 3: Email Address

```json theme={"dark"}
{
  "individual_reveal": {
    "email": "stephen@wiza.co"
  },
  "enrichment_level": "partial"
}
```
