ideogram-enterprise-rbac
Installation
SKILL.md
Ideogram Enterprise RBAC
Overview
Control access to Ideogram's AI image generation API through API key management and credit-based budgets. Ideogram uses credit-based pricing where each image generation costs credits based on model quality and resolution (standard vs HD, different aspect ratios).
Prerequisites
- Ideogram API account with team plan
- Dashboard access at ideogram.ai
- API key with admin-level permissions
Instructions
Step 1: Create Purpose-Scoped API Keys
set -euo pipefail
# Key for the marketing team (standard quality, moderate budget)
curl -X POST https://api.ideogram.ai/v1/api-keys \
-H "Authorization: Bearer $IDEOGRAM_ADMIN_KEY" \
-d '{
"name": "marketing-team",
Related skills