Stop Wasting Hours on Manual Orthographic Views—Automate Them with n8n
If you're a freelance designer, small studio owner, or product developer, you know how tedious it is to manually create front, side, and top orthographic views of 3D figurines. What used to take hours can now be done in minutes—thanks to an intelligent n8n workflow that combines Midjourney and the GPT-4o-image API.
In this guide, you'll learn exactly how to build and deploy a powerful automation that generates accurate orthographic projections from simple text prompts—no 3D modeling software required. We’ll walk through every node, explain the logic, and give you a free, downloadable n8n template so you can start automating today.
🚀 Get the Workflow Instantly
Skip the setup and import our pre-built template directly into your n8n instance.
Install this Workflow NowWhy Automate 3D Figurine Orthographic Views?
Orthographic views are essential for product documentation, manufacturing specs, patent filings, and client presentations. But creating them manually is error-prone and eats into your billable hours.
- Saves 5–10 hours per project by eliminating manual rendering
- Ensures consistent, professional output across all views
- Requires zero coding skills—built entirely with visual n8n nodes
- Scales effortlessly for client batches or product lines
How This n8n Workflow Works
Our automation uses a smart two-stage AI approach:
- GPT-4o-image API interprets your figurine description and generates precise orthographic prompts
- Midjourney renders high-quality front, side, and top views based on those prompts
- n8n orchestrates the entire flow, handles errors, and delivers organized outputs
Key n8n Nodes Used
n8n-nodes-base.manualTrigger– Starts the workflow with user inputn8n-nodes-base.httpRequest– Calls GPT-4o-image API and Midjourneyn8n-nodes-base.if– Validates API responses and handles failuresn8n-nodes-base.wait– Pauses between API calls to avoid rate limitsn8n-nodes-base.code– Formats prompts and structures output data
Step-by-Step: Building the Workflow in n8n
Follow these steps to recreate the workflow from scratch—or just import our template (recommended for most users).
1. Set Up the Manual Trigger
Begin with a Manual Trigger node. This lets you input your figurine description (e.g., "a warrior elf figurine holding a sword, fantasy style, detailed armor").
2. Generate Orthographic Prompts with GPT-4o-image API
Use an HTTP Request node to call the GPT-4o-image API. The system prompt instructs the model to return three JSON-formatted Midjourney prompts: one for front, one for side, and one for top view—each with orthographic projection keywords like "isometric projection removed, parallel lines, no perspective distortion."
{
"model": "gpt-4o-image",
"messages": [
{
"role": "system",
"content": "You are a 3D design assistant. Given a figurine description, return exactly 3 Midjourney prompts for orthographic views: front, side, top. Use --v 6.0 --style raw --ar 1:1. Include 'orthographic projection, no perspective, technical drawing style'."
},
{
"role": "user",
"content": "{{$json['description']}}"
}
],
"response_format": { "type": "json_object" }
}
3. Loop Through Views with Code & HTTP Nodes
A Code node parses GPT’s JSON response and creates three items (one per view). Then, an HTTP Request node sends each prompt to Midjourney’s API endpoint. We add a Wait node (5 seconds) between calls to respect rate limits.
4. Validate & Deliver Results
An If node checks if Midjourney returned a valid image URL. If yes, the image is saved or forwarded to your design tool (Figma, Notion, etc.). If not, the workflow logs the error and retries once.
Real-World Use Cases for Freelancers & Small Studios
This isn’t just a tech demo—it’s a business multiplier:
- Product designers use it to accelerate client mockups
- Print-on-demand sellers generate spec sheets for manufacturers
- Indie game devs create asset documentation without Blender expertise
💡 Pro Tip: Customize for Your Niche
Adjust the GPT prompt to match your style—e.g., "cartoonish," "realistic," or "minimalist"—and the workflow adapts instantly.
Get the Customizable TemplateTroubleshooting Common Issues
Even the best workflows hit snags. Here’s how to fix the most common ones:
⚠️ Midjourney returns "invalid prompt"?
Double-check your API key and ensure your prompt includes --v 6.0 --style raw. Avoid subjective terms like "beautiful"—stick to technical descriptors.
⏱️ Workflow runs slowly?
Increase the Wait node duration to 8–10 seconds if you’re on a free Midjourney tier. Paid plans allow faster throughput.
Ready to Transform Your Design Workflow?
You now have everything you need to automate 3D figurine orthographic views—from concept to delivery. Whether you're a solo freelancer or running a small studio, this n8n workflow cuts costs, boosts consistency, and frees up your time for creative work that actually moves the needle.
Don’t rebuild what’s already been perfected. Grab the free template today and start generating professional orthographic views in under 5 minutes.