> ## Documentation Index
> Fetch the complete documentation index at: https://auth0-update-anonymous-sessons-ea.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Auth0 Identity Conversion Suite

> Optimize how users convert through your login experience with the Auth0 Identity Conversion Suite, which bundles Anonymous Sessions and Experiment Center.

export const ReleaseStageNotice = ({feature, stage, plans, contact, terms}) => {
  const stageTextMap = {
    "beta": "Beta",
    "ea": "Early Access"
  };
  const stageText = stageTextMap[stage] || "a product release stage";
  const prsLink = "/docs/troubleshoot/product-lifecycle/product-release-stages";
  const linkify = (text, url) => {
    return <a href={url} target="_blank" rel="noreferrer" class="link">{text}</a>;
  };
  const includeDetails = (plans, contact, terms) => {
    const hasDetails = terms || plans || contact;
    if (!hasDetails) return null;
    return <span data-as="p">
            {plans && <>This feature is available for {linkify(`${plans} plans`, "https://auth0.com/pricing")}. </>}
            {contact && "To participate, contact " + contact + ". "}
            {terms && <>By using this feature, you agree to the applicable Free Trial terms in Okta's {linkify("Master Subscription Agreement", "https://www.okta.com/legal")}.</>}
        </span>;
  };
  return <Warning>
            <span data-as="p">
                <strong>The {feature} feature is in {linkify(stageText, prsLink)}.</strong>
            </span>

            {includeDetails(plans, contact, terms)}
        </Warning>;
};

<ReleaseStageNotice feature="Auth0 Identity Conversion Suite" stage="ea" plans="Enterprise" contact="your Technical Account Manager" />

The Auth0 Identity Conversion Suite bundles two Auth0 features that solve complementary problems:

* [**Anonymous Sessions**](/docs/manage-users/sessions/anonymous-sessions): Track and manage users from their first pre-authentication interaction and carry that activity to their authenticated profile when they sign up or log in.

  Without Anonymous Sessions, you can't identify or connect pre-authentication activity. Losing information like browsing history, cart contents, or consent choices can lead to abandoned carts and lost sign-ups.

* [**Experiment Center**](/docs/customize/experiment-center): Run A/B tests and gradual rollouts on changes to your authentication flows, like new sign-up fields, passkeys, or MFA rules.

  Without Experiment Center, you can't test or measure the impact of changes against a slice of traffic before shipping them to all of your users.

Used together, the two features answer different questions. Experiment Center tells you whether a change to your authentication flow worked. Anonymous Sessions tells you who it worked for by giving you a pre-authentication segment (such as users who saved an item before signing up) that you can use to split your experiment results.

Without the segment from Anonymous Sessions to divide your Experiment Center data, the impact on a specific group of users is diluted into the average across all users, so you risk missing real effects.

## Get started

<CardGroup cols={2}>
  <Card title="Anonymous Sessions" icon="user-secret" href="/docs/manage-users/sessions/anonymous-sessions" horizontal>
    Learn how anonymous sessions work and how to configure them.
  </Card>

  <Card title="Experiment Center" icon="flask" href="/docs/customize/experiment-center" horizontal>
    Learn how Experiment Center works and how to create your first experiment.
  </Card>
</CardGroup>
