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

# Autobidding

export const LastUpdated = ({date, lang = "en"}) => {
  const translations = {
    en: "Last updated:",
    es: "Última actualización:",
    pt: "Última atualização:",
    fr: "Dernière mise à jour:",
    de: "Zuletzt aktualisiert:"
  };
  const label = translations[lang] || translations.en;
  return <>
<style>{`
.last-updated-component {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 16px;
border-radius: 8px;
margin-top: 12px;
margin-bottom: 16px;
font-size: 14px;
background-color: rgba(0, 0, 0, 0.05);
border: 1px solid rgba(0, 0, 0, 0.12);
color: rgba(0, 0, 0, 0.75);
line-height: 1;
}

        .last-updated-component svg {
          flex-shrink: 0;
          vertical-align: middle;
        }

        .last-updated-component span {
          display: inline-flex !important;
          align-items: center !important;
          line-height: 1 !important;
        }

        [data-theme="dark"] .last-updated-component {
          background-color: #3a3a3a;
          border: 2px solid #888888;
          color: #ffffff;
        }

        [data-theme="dark"] .last-updated-component svg {
          stroke: #ffffff;
        }
      `}</style>
      <div className="last-updated-component">
        <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round">
          <circle cx="12" cy="12" r="10" />
          <polyline points="12 6 12 12 16 14" />
        </svg>
        <span>
          <strong style={{
    fontWeight: 600
  }}>{label}</strong> 
          <time dateTime={date}>{date}</time>
        </span>
      </div>
    </>;
};

<div style={{ textAlign: "justify", marginBottom: "1.5rem" }}>
  Topsort's Autobidding algorithm automates the management of bids for ads,
  enabling marketplaces to optimize their operations for metrics such as ROAS.
  By allowing the marketplace to set a target ROAS and monitor vendor activity,
  this system effectively replaces the need for manual CPC or CPM definitions
  with automatic optimization.
</div>

## How It Works

1. **Performance Monitoring:** Admins can monitor key performance metrics, including Return on Ad Spend (ROAS), Cost per Click (CPC), and Cost per Mille (CPM) trends.
2. **Target ROAS Adjustment:** The system allows marketplaces to set and adjust their Target ROAS based on their business objectives. Changes to Target ROAS can be tracked over time to understand performance trends and inform decisions.
3. **Reserve Prices:** The Autobidding Tab displays reserve prices for both sponsored listings and sponsored banners.

<Tip>
  This shift to autobidding gives marketplaces total power and clear
  information. It helps them grow and improve their ad business by using smart
  technology instead of having to change bids by hand.
</Tip>

***

<LastUpdated date="2025-11-18" />
