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

# Tomi Analytics

> Tomi now surfaces performance, campaign, and marketplace analytics through natural language, with forecasting and search built in.

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 className="cl-badge-group">
  <Badge color="gray" size="sm" icon="calendar">
    April 17, 2026
  </Badge>

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

  <Badge color="green" size="sm" icon="sparkles">
    New Feature
  </Badge>
</div>

## What's New

Tomi's analytics capabilities are now live. Ask questions in natural language and get instant answers backed by your marketplace data, without leaving the chat.

### Capabilities

* **KPI tracking** with time-series trends and period-over-period comparisons for CTR, ROAS, CVR, and CPC
* **Campaign analysis** across targeting, bidding behavior, and budget pacing
* **Product and catalog insights** across promoted and organic performance
* **Search and discovery** across campaigns, products, and vendors
* **Forecasting, currency conversion, and lightweight utilities**
* **Marketplace-level analytics** for admins (auction volume, fill rate, win rate) with strict data isolation

### Example Prompts

* *"How did ROAS trend over the last 30 days compared to the previous period?"*
* *"Which campaigns are underpacing their budget this week?"*
* *"Show me the top 10 products by CTR in the electronics category."*
* *"If I run a campaign with a \$50 daily budget on these 5 products, how many clicks can I expect?"*
* *"Find all active campaigns for vendor Acme and summarize their CPC and CVR."*

<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",
}}
/>

Available now in the Marketplace Admin sidebar. Contact your Topsort account team to get access.

<ChangelogActions />
