ideogram-install-auth

Featured

Install and configure Ideogram API authentication. Use when setting up a new Ideogram integration, configuring API keys, or initializing Ideogram in your project. Trigger with phrases like "install ideogram", "setup ideogram", "ideogram auth", "configure ideogram API key".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Ideogram Install & Auth ## Overview Set up Ideogram API authentication for AI image generation. Ideogram provides a REST API at `api.ideogram.ai` for text-to-image generation, editing, remixing, upscaling, and describing images. Authentication uses an `Api-Key` header on every request. ## Prerequisites - Node.js 18+ or Python 3.10+ - Ideogram account at [ideogram.ai](https://ideogram.ai) - API key from Ideogram dashboard (Settings > API Beta) - Payment method configured (auto top-up billing) ## Instructions ### Step 1: Get Your API Key 1. Log into [ideogram.ai](https://ideogram.ai) 2. Navigate to **Settings** (burger icon) > **API Beta** 3. Accept the Developer API Agreement 4. Click **Manage Payment** and add billing info via Stripe 5. Click **Create API key** -- store it immediately, it is shown only once ### Step 2: Install HTTP Client ```bash set -euo pipefail # Node.js (no SDK required -- Ideogram uses a plain REST API) npm install dotenv # Python pip install requests python-dotenv ``` ### Step 3: Configure Authentication ```bash # Create .env file (NEVER commit to git) echo 'IDEOGRAM_API_KEY=your-api-key-here' >> .env # Add to .gitignore echo '.env' >> .gitignore echo '.env.local' >> .gitignore ``` ### Step 4: Verify Connection ```typescript // verify-ideogram.ts import "dotenv/config"; async function verifyIdeogramAuth() { const response = await fetch("https://api.ideogram.ai/generate", { method: "POST", headers: { "Api-Key": process.env.IDE...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

ideogram-security-basics

Apply Ideogram security best practices for API key management and access control. Use when securing API keys, implementing key rotation, or auditing Ideogram security configuration. Trigger with phrases like "ideogram security", "ideogram secrets", "secure ideogram", "ideogram API key security", "ideogram key rotation".

2,266 Updated today
jeremylongshore
AI & Automation Featured

ideogram-common-errors

Diagnose and fix Ideogram API errors and exceptions. Use when encountering Ideogram errors, debugging failed requests, or troubleshooting integration issues. Trigger with phrases like "ideogram error", "fix ideogram", "ideogram not working", "debug ideogram", "ideogram 422", "ideogram 429".

2,266 Updated today
jeremylongshore
AI & Automation Featured

ideogram-hello-world

Create a minimal working Ideogram image generation example. Use when starting a new Ideogram integration, testing your setup, or learning basic Ideogram API patterns. Trigger with phrases like "ideogram hello world", "ideogram example", "ideogram quick start", "simple ideogram code", "first ideogram image".

2,266 Updated today
jeremylongshore
AI & Automation Featured

ideogram-ci-integration

Configure CI/CD pipelines for Ideogram integrations with GitHub Actions. Use when setting up automated testing, visual regression tests, or integrating Ideogram validation into your build process. Trigger with phrases like "ideogram CI", "ideogram GitHub Actions", "ideogram automated tests", "CI ideogram", "ideogram pipeline".

2,266 Updated today
jeremylongshore
DevOps & Infrastructure Featured

ideogram-deploy-integration

Deploy Ideogram integrations to Vercel, Cloud Run, and Docker platforms. Use when deploying Ideogram-powered applications to production, configuring platform-specific secrets, or setting up deployment pipelines. Trigger with phrases like "deploy ideogram", "ideogram Vercel", "ideogram production deploy", "ideogram Cloud Run", "ideogram Docker".

2,266 Updated today
jeremylongshore