AI
Pass

AI Coloring Page Generator — Agent Skill

AI Coloring Page Generator — Agent Skill

Generate custom printable coloring pages through the AI Pass API. This skill lets AI agents create black-and-white line art from any text description.

Setup

  1. Create an account at aipass.one (valid email required)
  2. Go to Developer DashboardAPI Keys
  3. Create a new API key
  4. Set it as $AIPASS_API_KEY in your environment

Usage

Send a POST request to generate a coloring page:

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": "Black and white coloring page, clean line art, no shading, printable: underwater scene with fish and coral",
    "size": "1024x1024",
    "n": 1
  }'

The response contains data[0].url with the image URL.

Cost

  • ~$0.05 per image generation
  • $1 free credit on signup (enough for ~20 coloring pages)
  • Pay as you go after that

Related

Skill File

---
name: ai-coloring-page-generator
description: Generate custom printable coloring pages using AI Pass API. Creates black-and-white line art from text descriptions.
version: 1.0.0
---

# AI Coloring Page Generator Skill

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

## Generate a Coloring Page

```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": "Black and white coloring page, clean line art, no shading, printable: a dragon flying over a medieval castle",
    "size": "1024x1024",
    "n": 1
  }'
```

**Response:** `response.data[0].url` — URL of the generated coloring page image.

## Tips
- Always prefix prompt with "Black and white coloring page, clean line art, no shading, printable:"
- Use `flux-pro/v1.1` for best results (~$0.05 per image)
- Size `1024x1024` works well for printing
- Download the image URL — it expires after some time
Download Skill File