CHỈ TRONG HAI TUẦN | GIẢM 20% cho Seedream 5.0 Pro!

Snapchat Still Swaps Faces in 2026, Just Not Where You Left It

Snapchat's official Face Swap Lens is still live in 2026, but Cameos are gone and older tutorials haven't caught up. Here are the exact steps to find the lens, plus a metered route for photos and saved video.

Face swapping broke into the mainstream on Snapchat in 2016, at least as the tech press told it at the time, and the lens is still in the app today. What changed is everything around it. The lens is no longer something you can count on finding in your carousel, the Cameos feature that older tutorials lean on has been retired, and a paid lens tier now exists alongside the free one.

This tutorial covers the current, verified route to the official Face Swap Lens, the Snapcode that unlocks it instantly, and what to do when an in-app lens can't handle the job, like swapping a face into a photo you already have or into recorded footage.

Key Takeaways

  • The official Face Swap Lens is live in Snapchat's public lens gallery under Snapchat's own creator account, tagged "camera roll", "face swap", and "fun" (snapchat.com lens page, retrieved July 2026).
  • The reliable ways in are Lens Explorer search, a Snapcode scan, or the lens page link. Per Snapchat Support, tapping a lens tile adds it to your carousel for 24 hours.
  • Cameos in Chat are gone. Snapchat's help page now reads: "Cameos in Chat are no longer available." Tutorials built around Cameos no longer work.
  • Lenses are built around the live camera; no documented Snapchat feature swaps faces in saved clips or image batches. For those jobs, Atlas Cloud runs dedicated endpoints from $0.09 per image and $0.2 per second of video.

Playful wanted poster built from the official lens listing, with the lens icon, name and tags on the left and the scannable Snapcode on the right.

Lens name, icon, tags and Snapcode from the official lens page on snapchat.com, retrieved July 28, 2026.

What Snapchat Actually Offers in 2026

Face swapping on Snapchat dates to early 2016, when tech press documented a two-person lens that traded faces live in the camera, followed a few weeks later by a variant that pulled faces from your photo library (The Next Web, February 2016; TechCrunch, April 2016). We found no Snap announcement marking either launch or any removal, and lenses rotate constantly; coverage from that same year already described the swap lens vanishing and returning without explanation.

The current state is easy to verify. The official Face Swap Lens has a public gallery page credited to Snapchat as creator, and its listed tags include "camera roll", suggesting the photo-library idea lives on in the current build. The gallery page doesn't document the mechanics, so treat the tag as a hint rather than a promise.

Beyond the official lens, anyone can build a swap effect. Snap's Lens Studio documentation ships a dedicated Face Swap component for creators, with a one-time Static mode and a continuous Real-Time mode, and it requires a detectable face on both the source and the target side. That's why the same search that surfaces the official lens also returns lookalikes from individual creators.

None of the official steps for finding or using a lens involve payment. Money only enters the picture with Snapchat+ and its Lens+ tier, covered in the FAQ, and with API routes outside the app.

Card grid comparing four face swap routes, with free badges on the two Snapchat lanes and starting prices on the two Atlas Cloud endpoints.

Snapchat details per Snapchat Support pages; Atlas Cloud prices from the two model pages, both retrieved July 28, 2026.

How to Face Swap on Snapchat, Step by Step

The steps below stitch together Snapchat's published instructions for the camera, Lens Explorer, and Snapcodes.

  1. Start on theCamerascreen. The Lens carousel is the row of Lenses beside the capture button. Snapchat's baseline instruction is to swipe along the carousel and tap a Lens; the Face Swap Lens just isn't guaranteed to be in that default row, which is what the next two steps solve.
  2. Search it in Lens Explorer. Snapchat's support page says to "tap the magnifying glass icon when the carousel is active". Type "face swap" in the search bar and look for the purple half-face icon with Snapchat as the creator. Expect creator-built variants from individual makers around it; the gallery hosts plenty.
  3. Or skip the search entirely. Scan the Snapcode from the image at the top of this guide inside the Snapchat camera, or open the lens gallery link on your phone and tap Open in Snapchat. Snapchat Support notes that a Snapcode with a circle in the center is the lens kind.
  4. Tap the lens and line up faces. The classic effect works between two faces in frame, the behavior documented since the 2016 launch coverage and consistent with the two-face requirement in Snap's own creator component. Get both faces fully visible and the swap applies in the preview.
  5. Capture. Tap the shutter for a photo, hold it for video, then send or save like any Snap.

Three-panel Snap press image showing the Lens carousel in the camera, the Lens Explorer browsing screen, and a community lens in use.

Lens Explorer as shown in Snap's launch announcement, July 10, 2018. The layout has evolved since, but the entry point is the same: an icon that appears when the carousel is active.

Two timing details from the same support page. Tapping a Lens tile adds it to your carousel for 24 hours, and Snapcode unlocks work "for a limited time". Either way the lens eventually drops out. If you see yourself coming back to it, the page's own advice applies: "Tap the heart to add it to your Favorites."

What the Snapchat Face Swap Lens Can't Do: Metered Swaps on Atlas Cloud

The lens route has a boundary: it works in the live camera, and whatever the camera-roll tag turns out to mean in the current build, nothing in the app is documented to swap faces across a batch of fifty images or a clip you recorded last week. That's the territory Atlas Cloud covers with two dedicated endpoints in its image tools lineup, one for stills and one for footage.

The Face Swap image endpoint takes a clear, front-facing source photo plus a target image and transfers the identity while pose, clothing, background and lighting stay put. The catalog lists it from $0.09 per image, and the playground quotes $0.096 per run at the default auto size, which makes a $10 top-up roughly 104 swaps. We ran this exact endpoint for our Canva face swap guide, where two test runs each came back in under half a minute.

The Face Swap video endpoint handles what no current Snapchat feature is documented to touch: footage you already recorded. Upload a source face and an MP4 or MOV clip of 2 to 10 seconds, pick 720P or 1080P output, and the model replaces the person while motion, timing, camera movement and background carry through. The catalog lists it from $0.2 per second; in the playground, a run at the default 1080P setting was quoted at $1.2996 when we checked, so $10 covers about 7 runs at that tier.

Rows of gold coins showing per-job costs on the two endpoints, one coin per ten cents, with exact dollar figures beside each row.

Model-page prices retrieved July 28, 2026. No discount was active on either endpoint at publication.

Both endpoints run in the browser with no code, or through the API with a key from the console dashboard and the API docs. The video call looks like this:

plaintext
1curl -X POST https://api.atlascloud.ai/api/v1/model/generateVideo \
2  -H "Authorization: Bearer $ATLASCLOUD_API_KEY" \
3  -H "Content-Type: application/json" \
4  -d '{
5    "model": "atlascloud/face-swap-video",
6    "image": "https://your-cdn.com/source-face.jpg",
7    "video": "https://your-cdn.com/target-clip.mp4",
8    "resolution": "720P"
9  }'

Here image is the source face and video is the clip whose person gets replaced. Generation is asynchronous: the response returns a prediction ID that you poll until it completes, the same flow every model on the platform uses, and the finished clip arrives as a URL. The image endpoint works the same way through generateImage, with the quirk that its lowercase image field is the source face and capitalized Image is the target photo.

Pro Tips for Cleaner Snapchat Face Swaps (and API Swaps)

The lens asks for almost nothing beyond two visible faces. The endpoints reward more deliberate inputs, and a few habits separate a convincing result from a wasted run.

  1. Feed a front-facing source, and match its angle to the target. Both model pages ask for a clear, front-facing photo of the face being swapped in. When we broke that rule in our Canva guide test with a candlelit side profile, the output came back clean but unrecognizable: the model saw half a face and invented the rest. Whatever it can't see, you don't get back.
  2. Crop to one face. Neither endpoint page documents how an image with several faces is handled, so remove bystanders from the source before uploading rather than gambling on the pick.
  3. Reuse one source photo across a batch. The same source file with the same settings keeps the transferred identity consistent across a whole set, which matters for recurring formats like a meme series or a product line.
  4. Trim clips before uploading. The video endpoint takes 2 to 10 seconds and bills by output length, so cutting a clip to the seconds you actually need is the cheapest edit you'll make.
  5. Save the dedicated endpoints for identity work. General image editors on the same platform take natural-language instructions and reinterpret the scene; the face swap endpoints exist to move one specific face and change nothing else. If a result needs to look like a particular person, the dedicated tool is the right lane.

Left: dim candlelit photo of a woman in side profile used as source face. Right: swap output with a clean but unverifiable face that does not match the source.

The rule-breaking source and its result from our Canva guide test , run on the same Atlas Cloud face-swap-image endpoint, July 2026. Both inputs were AI-generated; no real person's likeness was used.

Snapchat Cameos Are Gone, and Old Tutorials Haven't Noticed

Plenty of older tutorials still walk you through Cameos, the feature that stitched your selfie into short looping clips inside chat. That advice is dead. Snapchat's own help page for the feature now consists of a single line: "Cameos in Chat are no longer available. We'll be upgrading other experiences powered by My Selfie, so stay tuned!".

Cameos had a real run. Snap's newsroom introduced the feature on December 9, 2019 with "over 150 Cameos to choose from" and a flow that started from a button in the Chat sticker bar: take a selfie, choose a scene, send. It was the closest thing Snapchat had to face swapping into pre-made video.

Three-panel Snap press image showing how Cameos worked in 2019, from sticker bar to selfie capture to the finished looping clip.

Press asset from Snap's "Introducing Cameos" newsroom post, December 9, 2019. The feature has since been retired.

The successor Snap points to is My Selfie, which Snapchat describes as "a one stop shop for your selfie images that will be used to power generative AI, and other experiences on Snapchat, including ads." It sits under Settings, then My Account, then My Selfie. Two controls there are worth checking even if you never use the feature: "Who Can Generate with My Selfie" can be restricted to Only Me, and "See My Selfie in Ads" can be switched off.

So the honest 2026 answer to "how do I Cameo my face into a video" is that Snapchat no longer offers it in chat. Inside the app, the lens is what remains. For saved footage, a video endpoint like the one above is the working replacement.

Snapchat's Community Guidelines draw lines that apply directly to face swapping. Impersonation is banned outright: "We prohibit pretending to be someone (or something) that you're not, or attempting to deceive people about who you are." And the AI angle is covered explicitly, with Snap reserving "the right to take appropriate enforcement action against accounts that use AI to violate our Community Guidelines or abuse our AI products."

BoundaryWhere it's written
No pretending to be someone you're notCommunity Guidelines, impersonation section
No "manipulating content for false or misleading purposes (whether through generative AI or through deceptive editing)"Community Guidelines, false information section
No "sharing humiliating imagery (including manipulated or AI-generated imagery)"Community Guidelines, harassment section
Consent from the people depicted in a swapAtlas Cloud face swap model pages

Atlas Cloud's face swap pages sit on the same line, noting that face swapping involves real people: upload only media you have the right to use, get consent from the people depicted, and keep the output away from anything misleading or harmful. Laws vary by country and none of this is legal advice, but both vendors' published rules point the same direction, so swap faces with people who know and agree.

Frequently Asked Questions

Does Snapchat still have a face swap filter in 2026?

Yes. The official Face Swap Lens has a live gallery page on snapchat.com credited to Snapchat as its creator. There's no guarantee it sits in your default carousel, so search "face swap" in Lens Explorer, scan the lens Snapcode, or open the gallery link and tap Open in Snapchat.

Why can't I find Cameos on Snapchat anymore?

Snapchat retired the feature. The support page states "Cameos in Chat are no longer available" and points to My Selfie as the basis for future selfie-powered experiences. Any tutorial describing the Cameos button in the chat sticker bar predates the change.

Is face swapping on Snapchat free?

The official flow for finding and using lenses has no payment step. Snapchat also sells Snapchat+, which its help pages describe as premium and experimental features without publishing a fixed number: "The price shown on your device is the price you'll be charged if you subscribe." US press has reported $3.99 per month since the 2022 launch. A Lens+ plan bundles the Snapchat+ feature set with exclusive GenAI-powered Lenses on top. Nothing in Snapchat's pages says the classic Face Swap Lens sits behind either subscription.

Can I swap with a photo from my camera roll on Snapchat?

Press coverage documented a camera-roll face swap variant back in April 2016, and today's official lens carries a "camera roll" tag on its gallery page, but Snapchat doesn't document the current behavior anywhere we could verify. Test it in the app. If you need a dependable photo swap, the Atlas Cloud image endpoint takes any two uploaded photos for $0.096 per auto-size run.

How do I face swap a video I already recorded?

Not through a lens, since lenses apply live in the camera. Upload the clip to the Atlas Cloud video endpoint, which replaces the face across a 2 to 10 second MP4 or MOV from $0.2 per second of output. Our PixVerse face swap guide covers another editing-based route with its own mask-selection workflow.

Can I use Snapchat face swap on a computer?

There's no documented route. Snapchat for Web handles calls, chats and snapping in Chrome, Edge and Safari, but we found no official statement that Lenses, let alone this specific one, run there. The old Snap Camera desktop app was shut down in January 2023, per press reports. On a computer, the browser playground covered above is the option that works today.

Conclusion

Snapchat remains the fastest free way to swap faces with the person next to you: search or scan, tap the lens, point the camera at two faces. What it quietly stopped being is a general-purpose face swap tool. Cameos are retired, lenses rotate in and out, and no documented feature runs a swap over a clip you already recorded.

Knowing where each lane ends saves the frustration. Grab the lens through the Snapcode for the in-person moments, and when the job involves a photo library, a recorded clip, or any kind of volume, a metered endpoint picks up at about a dime per image or $0.2 per second of video, with no carousel timer attached.

Mô hình mới nhất

Một API cho mọi AI đa phương tiện.

Khám phá tất cả mô hình