---
title: "Snapchat Pixel"
description: "Load Snapchat Pixel and opt in to automatic or manual page-view events."
canonical_url: "https://scripts.nuxt.com/scripts/snapchat-pixel"
last_updated: "2026-08-10T04:32:13.856Z"
---

[Snapchat Pixel](https://businesshelp.snapchat.com/s/article/snap-pixel-about) reports browser events to Snapchat Ads for conversion measurement.

Use [`useScriptSnapchatPixel()`](/scripts/snapchat-pixel) to load the pixel and access its `snaptr` API.

<script-stats>



</script-stats>

<script-docs>



</script-docs>

## Page views

This integration does not send `PAGE_VIEW` by default. Enable the initialization event explicitly. Snapchat's [official Page View snippet](https://businesshelp.snapchat.com/articles/en_US/Knowledge/pixel-bigcommerce) uses the same `snaptr('track', 'PAGE_VIEW')` command:

```ts
const { proxy } = useScriptSnapchatPixel({
  id: 'YOUR_PIXEL_ID',
  trackPageView: true,
})

// Send later page views when your tracking policy requires them.
proxy.snaptr('track', 'PAGE_VIEW')
```

<script-types>



</script-types>
