Tracking Pixel API
Tracking pixels (aka beacon, 1×1 gif, or clear gif) allow for tracking email opens, advertising impressions and checkout pages where JavaScript and POST requests are disallowed, but where you can embed an image.
Follow Segment's HTTP Tracking API to use the /pixel API endpoint, which accepts base64 encoded url ?data and returns an 1x1 transparent gif.
https://api.segment.io/v1/pixel/<METHOD ENDPOINT>?data=<base64-ENCODED-JSON>
base64 encoding optional
The base64 encoding is optional, however it prevents special character interpretation or muxing by browsers, or other tools that might interpret URLs. For example, the URL https://www.example.com/ might be altered to http%3A%2F%2Fwww.example.com when appended to another URL, but the base64 version, aHR0cHM6Ly93d3cuZXhhbXBsZS5jb20, remains unchanged.
1/v1/pixel/identify2/v1/pixel/group3/v1/pixel/alias4/v1/pixel/page5/v1/pixel/screen6/v1/pixel/track
Each endpoint always responds with a 200 <empty-gif>, even if an error occurs.
1{2"writeKey": "YOUR_WRITE_KEY",3"userId": "user_123",4"event": "Email Opened",5"properties": {6"subject": "The Electric Daily",7"email": "jane.kim@example.com"8}9}
Note: you must include either a userId or anonymousId with every API call.
Protip: You can accomplish this with WindowBase64 methods:
eyJ3cml0ZUtleSI6ICJZT1VSX1dSSVRFX0tFWSIsICJ1c2VySWQiOiAiMDI1cGlrYWNodTAyNSIsICJldmVudCI6ICJFbWFpbCBPcGVuZWQiLCAicHJvcGVydGllcyI6IHsgICAic3ViamVjdCI6ICJUaGUgRWxlY3RyaWMgRGFpbHkiLCAgICJlbWFpbCI6ICJwZWVrQXRNZUBlbWFpbC5wb2tlIiB9fQ
https://api.segment.io/v1/pixel/track?userId=user_123&event=Email Opened&properties.subject=The Electric Daily&properties.email=jane.kim@example.com&writeKey=<YOUR_WRITE_KEY>