The Meta Pixel is your answer. Install it, pick the right event, and Ads Manager shows exactly which ads drive sign-ups.
Why Tracking Sign-Ups Matters
Conversion tracking tells you which ads produce real results. Without it, you're spending money and guessing.
Sign-up data shows you which campaigns, ad sets, and creatives are working. It also feeds Meta's algorithm so future delivery targets people most likely to convert. Better data means lower cost per sign-up over time.
Step 1: Install the Meta Pixel on Your Website
The Meta Pixel is a small JavaScript snippet. It bridges your website and your Facebook campaigns.
Find your Pixel ID in Events Manager
Open Meta Ads Manager. Go to Events Manager. Click "Connect Data Sources" and select "Web." Your Pixel ID appears on screen. Copy it before moving on.
Add the Pixel base code to your website head tag
Per Meta's developer documentation, the Pixel base code must be placed in the `
` section of every page on your site before conversion events can fire. Paste the snippet just before the closing `` tag. WordPress, Shopify, and Wix each have a dedicated field for head scripts. Use it.Verify installation with Pixel Helper
Install the Meta Pixel Helper Chrome extension. Visit your website. A green icon confirms the Pixel is firing. Red means there's an installation error. Fix it before moving to event setup.
Step 2: Choose Your Sign-Up Event Type
Meta offers three conversion tracking methods: standard events, custom events, and custom conversions. Per Meta's Pixel documentation, the cleanest options for sign-up tracking are standard events and URL-based custom conversions.
Using the Lead standard event
The Lead event fires when a sign-up is completed. It's the go-to for lead-gen campaigns. Meta's algorithm optimizes ad delivery toward users most likely to trigger it.
Using CompleteRegistration for form submissions
CompleteRegistration tracks completed registration forms specifically. Use it when your sign-up flow includes a multi-field form. Both Lead and CompleteRegistration are standard events that Meta recognizes natively and can optimize toward.
Creating custom conversions from URLs
This option requires no code changes. In Events Manager, create a custom conversion and point it at your thank-you page URL pattern (for example, `/thank-you`). Any visitor who lands there after clicking your ad counts as a conversion. Good for teams without developer access.
Step 3: Implement the Tracking Code
Your base code is live. Now add the event code that fires at the moment of sign-up.
Fire the Lead event on sign-up completion
Add this snippet to your confirmation page, or trigger it on successful form submission:
```javascript
fbq('track', 'Lead');
```
For CompleteRegistration, use:
```javascript
fbq('track', 'CompleteRegistration');
```
The `fbq('track')` function sends the event to Meta immediately.
Optional: pass value and currency parameters
Attach a monetary value to each sign-up if your leads vary in quality or expected revenue:
```javascript
fbq('track', 'Lead', {value: 10.00, currency: 'USD'});
```
Meta uses this to optimize delivery toward higher-value sign-ups over time.
Test with Pixel Helper
Visit your thank-you or confirmation page after adding the event code. Open Pixel Helper. Confirm both the PageView and Lead (or CompleteRegistration) events appear. Green on both means you're set.
Step 4: View Sign-Up Data in Ads Manager
Your Pixel is live and events are firing. Now read the results.
Navigate to your campaign performance
Open Meta Ads Manager. Choose the Campaigns, Ad Sets, or Ads tab based on how granular you want to go. Per the Meta Business Help Center, you can see which events are attributed to people who saw or clicked your ads at every level.
View sign-up conversions by ad set and ad
Click "Columns," then "Customize Columns." Search for Lead or Registration to add your event metrics. You'll see total conversions, cost per conversion, and conversion rate for each ad set and individual ad.
Use custom columns to track conversion metrics
Save your column view for future sessions. Pin metrics like Results, Cost per Result, and Conversion Rate. Quick access to the right numbers makes optimization faster.
Optimize Sign-Up Campaigns with Coinis
Good tracking is the foundation. Acting on the data is where growth happens.
Coinis's Advertise reporting brings your Meta campaign performance into a clean, focused dashboard. See which creatives drive the most sign-ups at a glance. Spot underperformers fast. Use those insights to refresh creatives with Coinis Revise or spin up new variants with the Image Ads workflow. Tracked sign-up audiences can also feed lookalike campaigns, stretching your budget further with every new conversion.
Or let Coinis do it.
From a product URL to a live Meta campaign. AI-generated creatives. On-brand copy. Direct publish to Facebook and Instagram. Real performance reporting. All in one platform.
Start free. Upgrade when you're ready.
15 AI tokens a month. No credit card.
Frequently Asked Questions
What is the best Facebook Pixel event to track sign-ups?
Use the Lead standard event for most sign-up flows. Use CompleteRegistration if your flow is a multi-field registration form. Both are natively recognized by Meta and can be used as campaign optimization goals.
Can I track sign-ups without touching my website code?
Yes. In Events Manager, create a custom conversion based on your thank-you page URL. Any visitor who reaches that URL after clicking your ad counts as a sign-up. No code changes needed.
Where do I see sign-up conversions in Ads Manager?
Go to Ads Manager and customize your columns. Search for Lead or Registration to add those conversion metrics. You can view totals, cost per conversion, and conversion rate at the campaign, ad set, and ad level.
Does the Meta Pixel work alongside the Conversions API?
Yes. The Conversions API is a server-side option that sends events directly from your server to Meta. It works as an alternative or a complement to the Pixel, which improves tracking accuracy when browser restrictions affect Pixel data.