> ## Documentation Index
> Fetch the complete documentation index at: https://confidence-auth-testing.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Add an Experiment to a Surface

> Learn how to add an experiment to a surface.

export const HowToSchema = ({name, description, steps = []}) => {
  const schema = {
    "@context": "https://schema.org",
    "@type": "HowTo",
    name,
    description
  };
  if (steps.length > 0) {
    schema.step = steps.map((s, i) => ({
      "@type": "HowToStep",
      position: i + 1,
      name: typeof s === "string" ? s : s.name,
      text: typeof s === "string" ? s : s.text || s.name
    }));
  }
  return <script type="application/ld+json" dangerouslySetInnerHTML={{
    __html: JSON.stringify(schema)
  }} />;
};

<HowToSchema
  name="Add an Experiment to a Surface"
  description="Learn how to add an experiment to a surface."
  steps={[
{
  name: "Go to your experiment",
  text: "Go to Confidence and select A/B Tests, Rollouts or Analyses on the left sidebar.",
},
{
  name: "Select the experiment",
  text: "Select the experiment you want to add to a surface.",
},
{
  name: "Add the surface",
  text: "On the right sidebar, click the edit icon in the Surfaces and coordination section and select the surface. Click Save.",
},
]}
/>

Adding an experiment to a [surface](../surfaces/introduction) helps organize experiments and allows others working on that surface to see your experiment.

## Add an Experiment to a Surface

<Steps>
  <Step title="Go to your experiment">
    Go to Confidence and select **A/B Tests**, **Rollouts** or **Analyses** on the left sidebar.
  </Step>

  <Step title="Select the experiment">
    Select the experiment you want to add to a surface.
  </Step>

  <Step title="Add the surface">
    On the right sidebar, click the edit icon in the **Surfaces and coordination** section and select the surface. Click **Save**.
  </Step>
</Steps>

## Related Resources

<CardGroup cols={2}>
  <Card title="Surfaces Reference" href="/docs/surfaces/introduction">
    Deep dive into surface configuration
  </Card>

  <Card title="Create a Surface" href="/docs/how-to-guides/create-surface">
    Set up a new surface
  </Card>

  <Card title="Organize Experiments" href="/docs/surfaces/organize-experiments">
    Best practices for experiment organization
  </Card>

  <Card title="Run Exclusive Experiments" href="/docs/how-to-guides/run-exclusive-experiments">
    Configure exclusivity groups
  </Card>
</CardGroup>
