Almost every business we work with has Meta Conversions API implemented at this point. Far fewer have actually checked whether their match quality improved as a result – which means most CAPI implementations are running without anyone confirming they’re doing what they were built to do.
Meta scores how confidently it can match an incoming conversion event to a real, known Facebook/Instagram user – based on the customer information parameters you send alongside the event. Higher match quality means better campaign optimisation, because Meta’s algorithm has more confidence in the signal it’s acting on. This is a score you can and should check, not something to assume is fine because the integration “is live.”
Not all customer information parameters carry equal weight. In rough order of impact:
Meta’s Events Manager shows a match quality score directly against each event source. There’s no single universal “good” number since it varies by event volume and available customer data, but as a practical benchmark: if your score sits meaningfully below what your best-performing event source achieves, or if it dropped noticeably after a recent change, that’s worth investigating rather than assuming it’s simply “as good as it gets.”
Hashing errors. Email must be lowercased and trimmed of whitespace before hashing – a capitalised email or trailing space produces a completely different hash, silently failing to match even though the underlying email is correct.
Missing fbp/fbc entirely. If your server-side implementation doesn’t capture and forward these browser-set values, you’re leaving a genuinely high-value signal unused – this is one of the most common gaps we find.
No deduplication between Pixel and CAPI. If you’re running both client-side Pixel and server-side CAPI for the same conversion without a shared event_id for deduplication, Meta may either double-count the conversion or, in some cases, discard both as conflicting signals.
Sending events too late. Server-side events sent significantly after the actual user action (batched processing, delayed CRM sync) can reduce match quality, since some of the signal Meta uses is time-sensitive.
Implementing CAPI is the first step. Checking whether it’s actually improving match quality is the step most implementations skip – and it’s the one that tells you whether the work actually paid off.