AI Emoji Maker — Agent Skill
AI Emoji Maker — Agent Skill
Create custom emoji-style images through the AI Pass API.
Setup
- Create an account at aipass.one
- Developer Dashboard → API Keys → Create key
- Set as
$AIPASS_API_KEY
Usage
curl -s -X POST https://aipass.one/apikey/v1/images/generations \
-H "Authorization: Bearer $AIPASS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "flux-pro/v1.1",
"prompt": "Emoji style icon, round, expressive, simple background: a cat wearing a top hat",
"size": "1024x1024",
"n": 1
}'
Response: data[0].url — the generated emoji image URL.
Cost
- ~$0.05 per emoji
- $1 free credit on signup
- Pay as you go
Related
Skill File
---
name: ai-emoji-maker
description: Generate custom emoji-style images using AI Pass API.
version: 1.0.0
---
# AI Emoji Maker Skill
## Auth
- **API Key:** `$AIPASS_API_KEY`
- Get your key: https://aipass.one/panel/developer.html → API Keys
## Generate Custom Emoji
```bash
curl -s -X POST https://aipass.one/apikey/v1/images/generations \
-H "Authorization: Bearer $AIPASS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "flux-pro/v1.1",
"prompt": "Emoji style icon, round, expressive, simple background: a happy robot waving",
"size": "1024x1024",
"n": 1
}'
```
**Response:** `response.data[0].url`
## Tips
- Prefix with "Emoji style icon, round, expressive, simple background:"
- ~$0.05 per generation
- Works great for Discord/Slack custom emojis
Download Skill File