How to check Meta Pixel event parameters in the browser
The Meta Pixel uses standard events to measure conversions and build audiences. Inspecting their parameters in the browser helps you check the values, currencies, and product data sent by the browser before relying on the Events Manager.
How to see Meta Pixel requests
- Open DevTools (F12), go to the Network tab and type
facebook.com/trin the filter. - Trigger a standard event on your site, such as adding a product to the cart or completing a purchase.
- Select the request and look at the Payload tab. Meta Pixel parameters are often encoded as
cd[...]fields in the query string or form body.
Key parameters to check
Meta’s documentation defines specific parameters for standard events:
ev: the event name, such asPurchaseorAddToCart.cd[value]: the monetary value as a decimal number (e.g., 9.99), without currency symbols.cd[currency]: a three-letter ISO 4217 code likeUSDorEUR.cd[content_ids]: a JSON array of product IDs.cd[contents]: a JSON array of objects withidandquantity, optionallyitem_price.cd[num_items]: the quantity of items.
Purchase requires value and currency.
Deduplication with the Conversions API
If you send the same events from the browser and a server (Conversions API), Meta needs to deduplicate them so they only count once.
- Look for the
eid(Event ID) parameter in the browser request. - For ID-based deduplication, send the Pixel
eventID(serialized aseid) as the Conversions APIevent_id, with the same event name and pixel/dataset, within Meta’s deduplication window. Use a different ID for each distinct event. The browser alone cannot confirm server delivery or deduplication. - Standard events sent multiple times from the browser with identical data without an Event ID can inflate your conversion metrics.