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

# Vendor Analytics: General Availability

> Vendor Analytics is now available to all marketplaces and vendor users

export const ChangelogActions = () => {
  return <>
      <style>{`
        .changelog-actions {
          display: flex;
          justify-content: center;
          gap: 12px;
          margin-top: 2rem;
          padding-top: 1.5rem;
          border-top: 1px solid #e5e7eb;
        }
        
        [data-theme="dark"] .changelog-actions {
          border-top-color: #374151;
        }
        
        .changelog-btn {
          display: inline-flex;
          align-items: center;
          gap: 6px;
          padding: 8px 16px;
          border-radius: 9999px;
          border: 1px solid #d1d5db;
          background: transparent;
          color: #6b7280;
          font-size: 14px;
          cursor: pointer;
          transition: all 0.2s ease;
        }
        
        .changelog-btn:hover {
          border-color: #9ca3af;
          background: #f9fafb;
        }
        
        [data-theme="dark"] .changelog-btn {
          border-color: #4b5563;
          color: #9ca3af;
        }
        
        [data-theme="dark"] .changelog-btn:hover {
          border-color: #6b7280;
          background: #1f2937;
        }
      `}</style>
      <div className="changelog-actions">
        <button className="changelog-btn" onClick={() => {
    const btn = event.target.closest("button");
    btn.innerHTML = "❤️ Like";
    btn.style.borderColor = "#ec4899";
  }}>
          🤍 Like
        </button>
        <button className="changelog-btn" onClick={() => {
    const btn = event.target.closest("button");
    navigator.clipboard.writeText(window.location.href);
    const originalContent = btn.innerHTML;
    btn.innerHTML = "✓ Copied";
    btn.style.borderColor = "#22c55e";
    btn.style.color = "#22c55e";
    setTimeout(() => {
      btn.innerHTML = originalContent;
      btn.style.borderColor = "";
      btn.style.color = "";
    }, 2000);
  }}>
          ↗ Share
        </button>
      </div>
    </>;
};

<div
  style={{
display: "flex",
gap: "8px",
flexWrap: "wrap",
marginBottom: "16px",
}}
>
  <Badge color="gray" size="sm" icon="calendar">
    December 5, 2025
  </Badge>

  <Badge color="blue" size="sm" icon="rectangle-ad">
    Ad Platform
  </Badge>

  <Badge color="orange" size="sm" icon="arrow-up">
    Improvement
  </Badge>
</div>

<Note>
  **Why It's Important**

  Vendor Analytics is now globally available across all Topsort marketplaces. Previously available to select partners, the full analytics suite is now accessible to all vendor users, providing comprehensive performance insights and reporting capabilities.
</Note>

<Frame>
  <img src="https://mintcdn.com/topsort/kKtg9wT2hJn2uG4V/images/changelog/vendor-analytics-global-availability.webp?fit=max&auto=format&n=kKtg9wT2hJn2uG4V&q=85&s=ca78ac9c0a052b8260433b97b2719bb7" alt="Vendor Analytics dashboard showing campaign performance metrics and export options" width="2000" height="1276" data-path="images/changelog/vendor-analytics-global-availability.webp" />
</Frame>

Vendor Analytics is now available to all vendor users across all marketplaces. Previously limited to select partners, the analytics dashboard is now accessible to everyone.

## What's Included

### Campaign Performance Table

The main view displays a table with your campaigns and their metrics:

* Impressions, clicks, conversions, spend, CTR, and ROAS
* Sort and filter by any column
* Select which columns to display using the column selector

### CSV Download

The download button exports the current table view to CSV format. The export includes:

* All currently visible columns
* Data filtered by your selected date range
* Any active filters you've applied

Use the exported data for offline analysis, custom reporting, or integration with external tools.

### Additional Features

* **Product-level insights** — see performance broken down by SKU
* **Custom date ranges** — select any time period to analyze
* **Automatic updates** — data refreshes as campaigns run

<div
  style={{
margin: "3rem 0",
height: "3px",
background:
  "linear-gradient(to right, transparent, #00ff88 20%, #00d4ff 40%, #8280ff 60%, #ff6b9d 80%, transparent)",
borderRadius: "2px",
opacity: "0.6",
}}
/>

Vendor Analytics is enabled by default for all vendor users. Access it through the Self-Service dashboard—no additional setup required.

<ChangelogActions />
