# Face Swap New

> Face Swap | AI Face Swapping. Swap faces between two images seamlessly. Triggers: face swap, swap face, face replacement, face transfer, swap faces

- Skill: `awesome-genmedia/face-swap-new` (Agent Skill)
- Install (CLI): `npx skillmds@latest add awesome-genmedia/face-swap-new`
- Raw SKILL.md: https://api.skillmd.com/api/skills/awesome-genmedia/face-swap-new/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: awesome-genmedia (https://skillmd.com/u/awesome-genmedia)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/awesome-genmedia/face-swap-new

---


# Face Swap

Swap faces between two images seamlessly. Provide a target image and a swap image to transfer the face from the swap image onto the target.

## Quick Start

> Requires an each::labs API key. Get one at [eachlabs.ai](https://eachlabs.ai).

```bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -d '{
    "model": "face-swap-new",
    "version": "0.0.1",
    "input": {
      "input_image": "https://example.com/target-photo.jpg",
      "swap_image": "https://example.com/face-source.jpg"
    }
  }'
```

## Parameters

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| input_image | string | - | Target image (the body/scene to keep) |
| swap_image | string | - | Swap image (the face to transfer) |

## Examples

**Swap face onto a portrait:**
```bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -d '{
    "model": "face-swap-new",
    "version": "0.0.1",
    "input": {
      "input_image": "https://example.com/professional-headshot.jpg",
      "swap_image": "https://example.com/my-selfie.jpg"
    }
  }'
```

**Face swap onto a scene:**
```bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -d '{
    "model": "face-swap-new",
    "version": "0.0.1",
    "input": {
      "input_image": "https://example.com/movie-still.jpg",
      "swap_image": "https://example.com/face-photo.jpg"
    }
  }'
```

## Related Models

- [become-image](../become-image/) - Style transfer with identity preservation
- [instant-id](../instant-id/) - Instant ID avatar generation
- [photomaker](../photomaker/) - Photo generation with identity preservation

## Documentation

- [each::labs Docs](https://docs.eachlabs.ai)
- [API Reference](https://docs.eachlabs.ai/api/overview)

