Technical & DevelopmentIntermediate
venice-image-generate
Image generation endpoints and available styles
Developer Setup
Setup & Installation
bash
npx skills add https://github.com/veniceai/skills --skill venice-image-generatenpx skills add https://github.com/veniceai/skills --skill venice-image-generateOr paste this URL into your assistant to install:
Overview
What This Skill Does
Image generation endpoints and available styles
Application
When to use this Skill
- Configuring integration settings for custom agent workflows.
- Optimizing query execution and response latency in production.
- Developing clean, standard-compliant implementations for enterprise services.
- Troubleshooting connection timeouts and authentication handshakes.
- Monitoring API rate limits and execution pipelines programmatically.
Documentation
Show Skills.md file
Venice Image Generation
Two text-to-image endpoints:
POST /api/v1/image/generate— Venice-native, full control (negative prompts, CFG, seed, up to 4 variants).POST /api/v1/images/generations— OpenAI-compatible, fewer knobs but drop-in for the OpenAI SDK.
Plus:
GET /api/v1/image/styles— list of style preset names forstyle_preset.
For editing / upscaling / multi-image / background removal, see venice-image-edit.
Use when
- You need to generate images from text prompts.
- You need multiple variants in one call.
- You're porting from OpenAI's
images.generateand want a zero-change SDK swap. - You want to browse style presets before committing to one.
/image/generate — Venice-native
Request
curl https://api.venice.ai/api/v1/image/generate \
-H "Authorization: Bearer $VENICE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "z-image-turbo",
"prompt": "A beautiful sunset over a mountain range",
"width": 1024,
"height": 1024,
"cfg_scale": 7.5,
"steps": 8,
"seed": 123456789,
"variants": 1,
"format": "webp",
"style_preset": "3D Model",
"safe_mode": true
}'
Lines 1 - 42 of 205
Recommendations
Explore other random skills
TechnicalIntermediate
firecrawl-build
Integrate Firecrawl into application code for web search, scraping, extraction, and browser interaction
TechnicalIntermediate
firecrawl-build-scrape
Integrate Firecrawl `/scrape` for single-page extraction from product code
TechnicalIntermediate
firecrawl-build-onboarding
Set up Firecrawl credentials and SDK in a project for the first integration