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

# Create your first lead list

> Create a lead list, then add people from search, CSV, followers, or other import sources.

export const Youtube = ({id, title = "YouTube video"}) => {
  const [playing, setPlaying] = useState(false);
  const poster = `https://i.ytimg.com/vi/${id}/hqdefault.jpg`;
  if (playing) {
    return <div className="relative my-6 aspect-video overflow-hidden rounded-xl border bg-gray-900">
        <iframe title={title} src={`https://www.youtube-nocookie.com/embed/${id}?autoplay=1&rel=0`} allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen className="absolute inset-0 h-full w-full" />
      </div>;
  }
  return <div className="relative my-6 aspect-video overflow-hidden rounded-xl border bg-gray-900">
      <button type="button" onClick={() => setPlaying(true)} className="group absolute inset-0 flex w-full items-center justify-center" aria-label={`Play ${title}`}>
        <img src={poster} alt="" className="absolute inset-0 h-full w-full object-cover" />
        <span className="relative z-10 flex h-14 w-14 items-center justify-center rounded-full bg-black/70 text-white shadow-lg transition group-hover:scale-105 group-hover:bg-black/85">
          <svg viewBox="0 0 24 24" className="ml-0.5 h-6 w-6 fill-current" aria-hidden>
            <path d="M8 5v14l11-7z" />
          </svg>
        </span>
      </button>
      <a href={`https://www.youtube.com/watch?v=${id}`} target="_blank" rel="noreferrer" className="sr-only">
        Watch on YouTube
      </a>
    </div>;
};

<Youtube id="r3q0Ax4FjXg" />

## 1. Create a list

1. Go to **Leads**.
2. Click **Create New List**.
3. Name the list (for example, “Investors”).
4. Click **Save**.

## 2. Choose an import source

From **Add Leads** you can import via:

* Inboxapp’s X prospecting database (search)
* CSV upload — [Import from CSV](/help/leads-management/importing/importing-leads-to-inboxapp-from-a-csv-file)
* Followers of an X account — [Import from followers](/help/leads-management/importing/importing-leads-to-inboxapp-from-followers-of-an-x-twitter-account)
* Following of an X account — [Import from following](/help/leads-management/importing/importing-leads-to-inboxapp-from-the-following-of-an-x-twitter-account)
* X lists — [Import from X lists](/help/leads-management/importing/importing-leads-from-twitter-lists-members-and-followers)
* Plain text of usernames or IDs
* Engagement on a post (likes, retweets, replies, quote tweets) — [Import from post engagement](/help/leads-management/importing/importing-leads-from-post-engagement)

Credits apply on **Pro** — see [Plans and credits](/help/billing/billing-plans-and-credits).

## 3. Example: add from database search

1. Choose **Search Leads**.
2. Filter by keyword — for example **Bio → Contains → investor**.
3. Select profiles (drag to select), then click **Add to List** and choose your list.

<Frame>
  <img src="https://mintcdn.com/inboxtechinc/dgSDSEato981ZoWO/images/help/create-your-first-lead-list/image-1502387434.png?fit=max&auto=format&n=dgSDSEato981ZoWO&q=85&s=ab29ef0c15a23173447cf6f98c603f9e" alt="Lead search results with bio filter for investor" width="1880" height="1598" data-path="images/help/create-your-first-lead-list/image-1502387434.png" />
</Frame>

<Frame>
  <img src="https://mintcdn.com/inboxtechinc/dgSDSEato981ZoWO/images/help/create-your-first-lead-list/image-1502387889.png?fit=max&auto=format&n=dgSDSEato981ZoWO&q=85&s=5ec4ecdf9b1997daa5fa2d4b8aad0051" alt="Add to List control for selected search results" width="624" height="432" data-path="images/help/create-your-first-lead-list/image-1502387889.png" />
</Frame>

## Related

* [Import leads from a CSV](/help/leads-management/importing/importing-leads-to-inboxapp-from-a-csv-file)
* [Tags and custom fields](/help/leads-management/organize/tags-and-custom-fields)
* [Reachable vs unreachable leads](/help/leads-management/concepts/understanding-reachable-vs-unreachable-leads)

Still stuck? Contact support from the app.
