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

# Registration

> Step-by-step guide to creating your VATSIM account, completing the P0 orientation exam, and getting your VATSIM CID

export const Checklist = ({title, items, icon}) => {
  const [checked, setChecked] = useState(Object.fromEntries(items.map((_, i) => [i, false])));
  const toggle = i => setChecked(prev => ({
    ...prev,
    [i]: !prev[i]
  }));
  const done = Object.values(checked).filter(Boolean).length;
  return <div className="vatsim-checklist">
      <div className="vatsim-checklist-header">
        <div className="vatsim-checklist-title">
          {icon && <span className="vatsim-checklist-icon">{icon}</span>}
          <span>{title}</span>
        </div>
        <span className="vatsim-checklist-count">{done}/{items.length}</span>
      </div>
      <div className="vatsim-checklist-items">
        {items.map((item, i) => <button key={i} className={`vatsim-checklist-item ${checked[i] ? 'checked' : ''}`} onClick={() => toggle(i)}>
            <span className="vatsim-check-box">
              {checked[i] && <span className="vatsim-check-mark">✓</span>}
            </span>
            <span className="vatsim-check-label">{item}</span>
          </button>)}
      </div>
    </div>;
};

Registering for VATSIM is free and takes about 15-20 minutes. By the end of this process, you will have a permanent VATSIM CID (your unique ID number on the network) and be ready to install a pilot client and connect.

## Create Your Account

<Steps>
  <Step title="Go to the VATSIM registration page">
    Visit [my.vatsim.net](https://my.vatsim.net) and click the **Register** button. This is the official VATSIM member portal where you will manage your account, file flight plans, and access network services.
  </Step>

  <Step title="Enter your real first and last name">
    You must use your real name in English/Latin characters. This is a requirement of the VATSIM Code of Conduct and is enforced across the network. Your name will be visible to controllers and other members.
  </Step>

  <Step title="Enter your email address and create a password">
    Use an email address you have access to, as you will need to verify it in the next step. Choose a strong password that you will remember - you will use these credentials every time you log in to VATSIM services.
  </Step>

  <Step title="Select your region and division">
    Choose **Americas (VATAM)** as your region. For your division, select **VATCAN** if you plan to fly primarily within Canadian airspace. This determines your home division for training and event purposes, but does not restrict where you can fly on the network.
  </Step>

  <Step title="Complete email verification">
    Check your inbox for a verification email from VATSIM and click the confirmation link. If you do not see it within a few minutes, check your spam or junk folder.
  </Step>

  <Step title="Complete the P0 New Member Orientation">
    After verifying your email, you will be directed to the P0 eLearning module. This covers the basics of the VATSIM network, the Code of Conduct, how pilot clients work, communication standards, and what is expected of you as a member. Take your time with this material - it will prepare you for your first flight.
  </Step>

  <Step title="Pass the orientation exam">
    At the end of the eLearning module, you will take a short exam. You need a score of **80% or higher** to pass. If you do not pass on the first attempt, you can review the material and try again.
  </Step>

  <Step title="Receive your VATSIM CID">
    Once you pass the exam, you will be assigned a permanent VATSIM CID. This is a unique numeric identifier (for example, 1234567) that you will use every time you connect to the network. Your rating will be automatically upgraded from P0 to P1, granting you full flying privileges.
  </Step>
</Steps>

<Warning>
  You **must** use your real first and last name with English/Latin characters when registering. This is enforced by the VATSIM Code of Conduct. Accounts registered with fake names, nicknames, or non-Latin characters may be suspended.
</Warning>

<Tip>
  **Save your CID somewhere safe.** You will need it every time you connect to the network through your pilot client. Many pilots save it in their password manager alongside their VATSIM login credentials.
</Tip>

<Tip>
  The P0 exam covers basic network rules and etiquette. If you want to prepare ahead of time, review the [VATSIM Code of Conduct](https://vatsim.net/docs/policy/code-of-conduct) and the [Rules and Etiquette](/vatsim/overview/rules-and-etiquette) page before taking the exam.
</Tip>

## What Comes Next

After completing registration, your next step is to download and configure a pilot client so you can connect your flight simulator to the VATSIM network. The most popular options are:

* **vPilot** for Microsoft Flight Simulator (Windows)
* **xPilot** for X-Plane 11 and X-Plane 12 (Windows, Mac, Linux)
* **Swift** for multiple simulators including MSFS, X-Plane, P3D, and FSX

<Checklist
  title="Registration Complete"
  items={[
"Created VATSIM account at my.vatsim.net",
"Verified email address",
"Completed P0 orientation module",
"Passed P0 exam with 80% or higher",
"Saved VATSIM CID for future use",
"Downloaded a pilot client (vPilot, xPilot, or Swift)"
]}
/>

<CardGroup cols={2}>
  <Card title="vPilot Setup" icon="desktop" href="/vatsim/software/vpilot">
    Install and configure vPilot for Microsoft Flight Simulator
  </Card>

  <Card title="xPilot Setup" icon="plane" href="/vatsim/software/xpilot">
    Install and configure xPilot for X-Plane 11 and X-Plane 12
  </Card>
</CardGroup>
