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

> TheOptimizer connects your ad networks and trackers in one dashboard so you can monitor performance, automate optimization, and launch campaigns at scale.

# TheOptimizer.io - Your Advertising Co-Pilot

export const ArcadeVideoButton = ({id, title = "Watch interactive demo", label = "Watch Video"}) => {
  const [open, setOpen] = useState(false);
  return <div style={{
    display: 'inline-block'
  }}>
      <button type="button" onClick={() => setOpen(true)} style={{
    display: 'inline-flex',
    alignItems: 'center',
    gap: '8px',
    backgroundColor: '#3e47ec',
    color: '#ffffff',
    border: 'none',
    padding: '10px 18px',
    borderRadius: '8px',
    fontSize: '15px',
    fontWeight: '600',
    cursor: 'pointer'
  }}>
        <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="white">
          <polygon points="5,3 19,12 5,21" />
        </svg>
        {label}
      </button>

      {open && <div onClick={() => setOpen(false)} style={{
    position: 'fixed',
    top: 0,
    left: 0,
    width: '100%',
    height: '100%',
    backgroundColor: 'rgba(0, 0, 0, 0.85)',
    zIndex: 9999999,
    display: 'flex',
    alignItems: 'center',
    justifyContent: 'center'
  }}>
          <div onClick={e => e.stopPropagation()} style={{
    width: '90%',
    maxWidth: '1100px',
    aspectRatio: '16 / 9',
    borderRadius: '12px',
    overflow: 'hidden',
    position: 'relative'
  }}>
            <iframe src={`https://demo.arcade.software/${id}?embed&embed_mobile=tab&embed_desktop=inline&show_copy_link=true`} title={title} frameBorder="0" loading="lazy" allowFullScreen allow="clipboard-write" style={{
    width: '100%',
    height: '100%',
    border: 'none',
    colorScheme: 'light'
  }} />
          </div>

          <button type="button" onClick={() => setOpen(false)} style={{
    position: 'fixed',
    top: '20px',
    right: '24px',
    background: 'rgba(255,255,255,0.15)',
    border: 'none',
    color: '#ffffff',
    fontSize: '24px',
    lineHeight: 1,
    width: '40px',
    height: '40px',
    borderRadius: '50%',
    cursor: 'pointer',
    display: 'flex',
    alignItems: 'center',
    justifyContent: 'center'
  }}>
            ✕
          </button>
        </div>}
    </div>;
};

export const ArcadePopoutModal = ({id, title = "Interactive demo"}) => {
  const [isPopout, setIsPopout] = useState(false);
  const iframeRef = useRef(null);
  useEffect(() => {
    function onArcadeIframeMessage(e) {
      if (e.origin !== 'https://demo.arcade.software' || !e.isTrusted) return;
      if (!iframeRef.current || !iframeRef.current.contentWindow) return;
      if (e.data.event === 'arcade-init') {
        iframeRef.current.contentWindow.postMessage({
          event: 'register-popout-handler'
        }, '*');
      }
      if (e.data.event === 'arcade-popout-open') {
        setIsPopout(true);
      }
      if (e.data.event === 'arcade-popout-close') {
        setIsPopout(false);
      }
    }
    window.addEventListener('message', onArcadeIframeMessage);
    return () => window.removeEventListener('message', onArcadeIframeMessage);
  }, []);
  return <div style={{
    position: 'relative',
    paddingBottom: 'calc(54.4737% + 41px)',
    height: 0,
    width: '100%'
  }}>
      <iframe ref={iframeRef} src={`https://demo.arcade.software/${id}?embed&embed_mobile=tab&embed_desktop=modal&show_copy_link=true`} title={title} frameBorder="0" loading="lazy" allowFullScreen allow="clipboard-write" style={{
    position: isPopout ? 'fixed' : 'absolute',
    top: 0,
    left: 0,
    width: '100%',
    height: '100%',
    zIndex: isPopout ? 9999999 : 'auto',
    colorScheme: 'light'
  }} />
    </div>;
};

TheOptimizer is a campaign management and automation platform built for media buying teams, agencies, or solo marketers. It connects to your ad networks and tracking platforms, giving you a unified view of performance across all accounts, automation rules that run your optimization logic around the clock, and tools to launch campaigns at scale — all from a single dashboard.

## Who It's For

TheOptimizer is designed for anyone who runs paid campaigns across multiple ad networks and needs to manage them efficiently:

* **Solo media buyers or media buying teams** who want to automate repetitive optimization tasks and reclaim time
* **Affiliate marketers** running performance campaigns across native, social, and search networks
* **Performance marketing agencies** managing dozens of ad accounts across multiple clients

<Info>
  You can use TheOptimizer with ad network data alone — a third-party tracking platform is optional, though strongly recommended for accurate revenue attribution.
</Info>

## Supported Ad Networks

TheOptimizer connects to all major paid traffic sources:

**Full integration:** Facebook (Meta), Google Ads, TikTok, Taboola, Outbrain, MGID, MediaGo, BigoAds, Adskeeper, RevContent, NewsBreak

**Beta:** Trillion, YahooDSP

## Supported Tracking Platforms

Connect your preferred tracking platform to bring accurate cost and revenue data into TheOptimizer for reporting and automation:

**Recommended:** ClickFlare

**Also supported:** Voluum, RedTrack, Bemob, Binom, Everflow, Google Analytics 4, AdsBridge, Cloud Thrive, CPV Lab, Funnel Flux, Funnel Flux Pro, Kintura, Keitaro

<Note>
  If your tracker is not on the supported list, you can use the Google Sheets or Bring Your Own Data integration as a workaround.

  * Export your conversion data to a Google Sheet and TheOptimizer will sync from it automatically every 30 minutes.
  * Use our Bring Your Own Data integration to upload your conversion, revenue or any other custom data using our API
</Note>

## Key Features

<CardGroup cols={2}>
  <Card title="Campaign Management" icon="table-columns">
    View and manage campaigns, ad sets, and ads across all your connected ad accounts in a single unified table. Filter by performance conditions, save views, customize columns, and create custom metrics with your own formulas.
  </Card>

  <Card title="Automation Rules" icon="robot">
    Convert your optimization strategy into rules that TheOptimizer runs 24/7. Rules can pause campaigns, adjust budgets and bids, send alerts, and more — triggered only when the conditions you define are met.
  </Card>

  <Card title="Campaign Creator" icon="rocket">
    Launch campaigns at scale across Facebook, Taboola, Outbrain, RevContent, MGID, and AdsKeeper. Upload hundreds of creatives, auto-generate campaigns, and launch across multiple ad accounts simultaneously.
  </Card>

  <Card title="Creative Library" icon="photo-film">
    A centralized collection of all images and videos from your active campaigns across every connected account. Tag creatives so your team can filter and pull them directly inside the Campaign Creator.
  </Card>
</CardGroup>
