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

# Attribution and Billing

> Attribution logic, conversion tracking, and payment models for Offsite Ads.

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

## Attribution and Conversion Tracking

Topsort supports two attribution layers:

* **Channel-native attribution:** Google, Meta, Snapchat, and TikTok apply their own attribution models.
* **Topsort in-house attribution:** Uses marketplace event data for cross-channel comparability and powers attribution-based reporting in the Topsort UI.

### Why In-House Attribution Matters

* Enables apples-to-apples performance comparison across onsite and offsite channels (including TikTok alongside Google, Meta, and Snapchat).
* Supports configurable attribution windows (for example, 7-day or 30-day windows).
* Standardizes purchase-based metrics for reporting in Topsort.

### Event Sharing

Topsort supports sharing events with offsite platforms via offline conversions API, eliminating need for marketplace to implement tracking pixel, saving implementation time and effort.

## Billing Model

Offsite billing is marketplace-controlled and consolidated:

* Vendors spend against channel-specific wallet capacity (for example, Google wallet, Meta wallet, Snapchat wallet, TikTok wallet).
* Marketplace is billed directly by the channel for media spend.
* Marketplace bills vendors according to its commercial terms.

### Payment Modes

* **Prepay:** vendor funds wallet credits before spending.
* **Postpay:** marketplace sets vendor spending capacity limits; charges are settled later.

***

<LastUpdated date="2026-05-14" />
