AI Tattoo Preview — Agent Skill
AI Tattoo Preview — Agent Skill
Preview tattoo designs on body photos through the AI Pass API using image editing.
Setup
- Create an account at aipass.one
- Developer Dashboard → API Keys → Create key
- Set as
$AIPASS_API_KEY
Usage
The tattoo preview uses image editing via chat completions with an image input:
B64=$(base64 -w0 body_photo.jpg)
curl -s -X POST https://aipass.one/apikey/v1/chat/completions \
-H "Authorization: Bearer $AIPASS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gemini/gemini-3-pro-image-preview",
"messages": [{"role": "user", "content": [
{"type": "text", "text": "Add a realistic tattoo: small minimalist mountain range on the inner forearm"},
{"type": "image_url", "image_url": {"url": "data:image/jpeg;base64,'$B64'"}}
]}]
}'
Cost
- Image editing costs vary by model
- $1 free credit on signup
- Pay as you go
Related
Skill File
---
name: ai-tattoo-preview
description: Preview tattoo designs on body photos using AI Pass image editing API.
version: 1.0.0
---
# AI Tattoo Preview Skill
## Auth
- **API Key:** `$AIPASS_API_KEY`
- Get your key: https://aipass.one/panel/developer.html → API Keys
## Preview a Tattoo
Uses image editing (chat completions with image input):
```bash
B64=$(base64 -w0 body_photo.jpg)
curl -s -X POST https://aipass.one/apikey/v1/chat/completions \
-H "Authorization: Bearer $AIPASS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gemini/gemini-3-pro-image-preview",
"messages": [{"role": "user", "content": [
{"type": "text", "text": "Add a realistic tattoo to this photo: geometric wolf head on the shoulder. Make it look natural on the skin."},
{"type": "image_url", "image_url": {"url": "data:image/jpeg;base64,'$B64'"}}
]}]
}'
```
**Response:** `response.choices[0].message.content` contains the edited image.
## Tips
- Use `gemini/gemini-3-pro-image-preview` for best editing results
- Be specific about tattoo placement and style
- Higher resolution photos give better results
Download Skill File