n8n-nodes-audome
v2.4.6
Published
Audome Node for n8n - Generate images with Audome API. Connect to Audome.io and create images from templates automatically.
Maintainers
Readme
Audome Node for n8n
English | العربية
Overview
Audome Node is a powerful n8n community node that allows you to generate dynamic images from templates using the Audome API. Automate your image creation workflow with support for Arabic text, custom fonts, and dynamic data injection.
Features
- 🎨 List Projects - Get all your Audome projects
- 🖼️ Generate Images - Create images from templates dynamically
- 🔐 Secure Authentication - Token-based API authentication
- 🌍 Full Arabic Support - Native RTL and Arabic font handling
- ⚡ Fast & Reliable - Powered by Supabase
Installation
In n8n
- Go to Settings → Community Nodes
- Install:
@audome/n8n-nodes-audome - Refresh your browser
- Start using the Audome node!
Manual Installation
npm install @audome/n8n-nodes-audomeThen restart n8n:
docker restart n8n
# or
pm2 restart n8nConfiguration
1. Add Credentials
Go to Credentials → Add Credential → Audome API
Enter your API Token from https://audome.io/api-tokens
2. Create Workflow
Trigger → Audome Node → Save/SendHow to Use
Step 1: Get Project Layers
- Add Audome Node
- Operation: Get Projects
- Execute to see all projects with their layers
This returns each project with:
layersarray (showing required field names)curl_example(ready-to-use curl command)
Step 2: Generate Image
- Operation: Generate Image
- Project: Select your project from the dropdown
- Data: Enter JSON object using layer names from Step 1
Example: If layers are ["title", "bg"]:
{
"title": "Welcome",
"bg": "https://example.com/bg.jpg"
}Operation: Get Projects
Use this operation to fetch all your projects with their layers information.
Configuration:
- Operation: Get Projects
Output:
{
"success": true,
"projects": [
{
"id": "0798748e-2238-49a8-83eb-7d7a57f384d0",
"name": "My Project",
"layers": [
{
"name": "title",
"type": "text",
"required": true,
"current_value": "Hello"
},
{
"name": "bg",
"type": "image",
"required": true,
"current_value": "https://example.com/bg.jpg"
}
],
"curl_example": "curl -X POST \"https://api.render.audome.io/api/generate/...\"..."
}
],
"count": 1
}Operation: Generate Image
Configuration:
- Operation: Generate Image
- Project: Select from the list
- Data: JSON object with layer values
Example Data:
{
"title": "Welcome",
"bg": "https://example.com/background.jpg"
}Output:
{
"success": true,
"image_url": "https://api.render.audome.io/images/20240115_120000_abc123.png",
"generation_id": "uuid-here",
"credits_remaining": 453,
"metadata": {
"width": 800,
"height": 600,
"generationTime": 1234
}
}API Endpoints
- Projects:
GET https://api.render.audome.io/api/projects - Generate:
POST https://api.render.audome.io/api/generate/{project_id}
Credits
Each image generation costs 1 credit. Check your remaining credits in the API response.
Support
- 🌐 Website: https://audome.io
- 📧 Email: [email protected]
- 📚 API Docs: https://audome.io/api-tokens
License
MIT
العربية
نظرة عامة
Audome Node هو node قوي لمجتمع n8n يتيح لك توليد صور ديناميكية من قوالب باستخدام Audome API. أتمتة إنشاء الصور مع دعم النص العربي والخطوط المخصصة وحقن البيانات الديناميكية.
المميزات
- 🎨 قائمة المشاريع - احصل على جميع مشاريع Audome الخاصة بك
- 🖼️ توليد الصور - إنشاء صور من قوالب ديناميكياً
- 🔐 مصادقة آمنة - مصادقة API تعتمد على التوكن
- 🌍 دعم كامل للعربية - معالجة RTL والخطوط العربية الأصلية
- ⚡ سريع وموثوق - مدعوم بـ Supabase
التثبيت
في n8n
- اذهب إلى الإعدادات → Community Nodes
- تثبيت:
@audome/n8n-nodes-audome - حدّث المتصفح
- ابدأ استخدام Audome node!
التثبيت اليدوي
npm install @audome/n8n-nodes-audomeثم أعد تشغيل n8n:
docker restart n8n
# أو
pm2 restart n8nالتكوين
1. إضافة Credentials
اذهب إلى Credentials → إضافة Credential → Audome API
أدخل API Token الخاص بك من https://audome.io/api-tokens
2. إنشاء Workflow
Trigger → Audome Node → Save/Sendالاستخدام
قائمة المشاريع
العملية: قائمة المشاريع
الإخراج:
{
"success": true,
"projects": [
{
"id": "0798748e-2238-49a8-83eb-7d7a57f384d0",
"name": "مشروعي"
}
],
"count": 1
}توليد صورة
العملية: توليد صورة
المعاملات:
- Project ID: اختر من مشاريعك
- Data: كائن JSON بقيم القالب
مثال البيانات:
{
"title": "مرحباً",
"subtitle": "هذا مولد من n8n",
"bg": "https://example.com/background.jpg"
}الإخراج:
{
"success": true,
"image_url": "https://api.render.audome.io/images/20240115_120000_abc123.png",
"generation_id": "uuid-here",
"credits_remaining": 453,
"metadata": {
"width": 800,
"height": 600,
"generationTime": 1234
}
}نقاط نهاية API
- المشاريع:
GET https://api.render.audome.io/api/projects - التوليد:
POST https://api.render.audome.io/api/generate/{project_id}
الكريدت
كل عملية توليد تكلف 1 كريدت. تحقق من الكريدت المتبقي في استجابة API.
الدعم
- 🌐 الموقع: https://audome.io
- 📧 البريد: [email protected]
- 📚 توثيق API: https://audome.io/api-tokens
الترخيص
MIT
