AI
Pass

AI Wallpaper Maker — Agent Skill

AI Wallpaper Maker — Agent Skill

Generate custom wallpapers for any device 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

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": "High quality wallpaper: cyberpunk cityscape at sunset with neon signs",
    "size": "1792x1024",
    "n": 1
  }'

Response: data[0].url

Sizes

  • Phone: 1024x1792
  • Desktop: 1792x1024
  • Square: 1024x1024

Cost

  • ~$0.05 per wallpaper
  • $1 free credit on signup

Related

Skill File

---
name: ai-wallpaper-maker
description: Generate custom wallpapers for any device using AI Pass API.
version: 1.0.0
---

# AI Wallpaper Maker Skill

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

## Generate Wallpaper

```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": "High quality wallpaper: northern lights over a frozen lake, photorealistic",
    "size": "1024x1792",
    "n": 1
  }'
```

**Response:** `response.data[0].url`

## Size Options
- Phone: `1024x1792`
- Desktop: `1792x1024`
- Square: `1024x1024`

## Cost
- ~$0.05 per wallpaper
- $1 free credit on signup
Download Skill File