AdBooster
Drop in CSV exports from your ad platforms and see what really happened — side by side, on one dashboard.
Import your data
Each platform lets you download a CSV of its data. Pick a source below, follow the steps to grab the export, then drop the file here. No OAuth, no credentials stored.
- Open GA4 → Explore → "Free form" template.
- Add dimensions: Event name, Page path and screen class, Date hour.
- Add metric: Event count.
- Top right → Share this exploration → Download file → CSV.
- Open Google Ads → Reports → "Predefined reports" → "Campaign" → "Campaign performance".
- Set the date range you want (the importer respects whatever range the CSV contains).
- Make sure columns include: Campaign, Date, Clicks, Conversions, Cost.
- Top right → Download → CSV.
- Open SpiderAF dashboard → "Click Fraud" or "Invalid Traffic" report for the linked Ads account.
- Pick the date range and let the report load.
- Top right → Export → CSV.
- Columns expected: date, clicks, fraud_clicks (or invalid_clicks), optional gclid.
GTM doesn't export events to CSV — it fires tags. Instead, paste a custom HTML tag in your container that calls our ingest endpoint in real time.
Hit GET /api/v1/sites/<site_id>/gtm-snippet on this server to get the exact tag code and installation steps for your site.
curl https://adbooster.pedroganco.com/api/v1/sites/00000000-0000-0000-0000-000000000001/gtm-snippet
Returns the custom HTML tag to paste into GTM, plus the trigger setup.
Paste this in the <head> of the site you want to measure. Events stream in live — no upload, no CSV.
<script>
window.adbooster = {
site_id: "00000000-0000-0000-0000-000000000001",
endpoint: "https://adbooster.pedroganco.com"
};
</script>
<script async src="https://adbooster.pedroganco.com/api/v1/tracker.js"></script>