> ## 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.

# Getting Started

> Getting started with Toppie

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>
    </>;
};

## [For Agencies and Brands](/en/knowledge-base/toppie/agencies-brands/agencies-brands/)

### Prerequisites

<div style={{textAlign: 'justify', marginBottom: '1.5rem'}}>
  * Active advertiser account with participating brands
  * Campaign budgets of \$10K+ monthly recommended for optimal performance
  * Product catalogs in supported formats (CSV, API feed, or manual upload)
</div>

### Onboarding Process

<Steps>
  <Step title="Account Setup: Create a Toppie account and configure team access/permissions" />

  <Step title="Catalog Integration:">
    <div style={{textAlign: 'justify', marginBottom: '1.5rem'}}>
      Upload or connect product catalog for Global Catalog mapping
    </div>
  </Step>

  <Step title="Payment Setup:">
    <div style={{textAlign: 'justify', marginBottom: '1.5rem'}}>
      Configure billing and payment methods
    </div>
  </Step>

  <Step title="First Campaign:">
    <div style={{textAlign: 'justify', marginBottom: '1.5rem'}}>
      Launch pilot campaign across 2-3 retailers to test performance
    </div>
  </Step>

  <Step title="Scale and Optimize:">
    <div style={{textAlign: 'justify', marginBottom: '1.5rem'}}>
      Expand to complete retailer network based on pilot results
    </div>
  </Step>
</Steps>

### Support Resources

<div style={{textAlign: 'justify', marginBottom: '1.5rem'}}>
  * Dedicated account management for accounts \$50K+ monthly spend
  * Self-service documentation and tutorials
  * API documentation for technical integrations
  * Best practices guides for campaign optimization
</div>

<div style={{textAlign: 'justify', marginBottom: '1.5rem'}}>
  ***
</div>

## [For Retailers and Marketplaces](/en/knowledge-base/toppie/retailers-marketplaces/retailers-marketplaces/)

### Prerequisites

<div style={{textAlign: 'justify', marginBottom: '1.5rem'}}>
  * Existing ad inventory (sponsored listings, banner placements, etc.) on the [**Ad Platform**](https://www.topsort.com/retail-media/)
</div>

### Ongoing Support

<div style={{textAlign: 'justify', marginBottom: '1.5rem'}}>
  * Performance optimization recommendations
  * Regular business reviews for high-volume partners
  * Priority support for technical issues
</div>

<div style={{textAlign: 'justify', marginBottom: '1.5rem'}}>
  ***

  Whether you’re on the supply side or the demand side, getting started with Toppie is easy. The supply side of Toppie is already integrated into the [**Ad Platform**](/en/knowledge-base/ad-platform/). Still, we recommend visiting the [Getting Access](/en/toppie/getting-access/) page.
</div>

<Note>If you want to interact with Toppie via complete code solutions, check the [Toppie API](/en/api-reference/toppie-api).</Note>

***

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