AI
Pass

AI Cartoon Avatar Maker — Agent Skill

AI Cartoon Avatar Maker — Agent Skill

Transform photos into cartoon-style avatars through the AI Pass API.

Setup

  1. Create an account at aipass.one
  2. Developer DashboardAPI Keys → Create key
  3. Set as $AIPASS_API_KEY

Usage

B64=$(base64 -w0 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": "Transform this photo into a Japanese anime style avatar."},
      {"type": "image_url", "image_url": {"url": "data:image/jpeg;base64,'$B64'"}}
    ]}]
  }'

Available Styles

  • Pixar 3D, Anime, Disney, Comic Book, Chibi

Cost

  • Image editing costs vary
  • $1 free credit on signup

Related

Skill File

---
name: ai-cartoon-avatar
description: Transform photos into cartoon-style avatars using AI Pass image editing API.
version: 1.0.0
---

# AI Cartoon Avatar Skill

## Auth
- **API Key:** `$AIPASS_API_KEY`
- Get your key: https://aipass.one/panel/developer.html → API Keys

## Transform Photo to Cartoon

```bash
B64=$(base64 -w0 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": "Transform this photo into a Pixar 3D animation style cartoon avatar. Keep the person recognizable."},
      {"type": "image_url", "image_url": {"url": "data:image/jpeg;base64,'$B64'"}}
    ]}]
  }'
```

**Response:** `response.choices[0].message.content`

## Styles
- Pixar 3D animation
- Japanese anime
- Disney character
- Comic book illustration
- Chibi (cute, exaggerated)
Download Skill File