audome

Audome Node for n8n - Generate images with Audome API. Connect to Audome.io and create images from templates automatically.

Package Information

Downloads: 22 weekly / 65 monthly
Latest Version: 2.4.6
Author: Audome

Documentation

Audome Node for n8n

Audome Logo

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

  1. Go to SettingsCommunity Nodes
  2. Install: @audome/n8n-nodes-audome
  3. Refresh your browser
  4. Start using the Audome node!

Manual Installation

npm install @audome/n8n-nodes-audome

Then restart n8n:

docker restart n8n
# or
pm2 restart n8n

Configuration

1. Add Credentials

Go to CredentialsAdd CredentialAudome API

Enter your API Token from https://audome.io/api-tokens

2. Create Workflow

Trigger → Audome Node → Save/Send

How to Use

Step 1: Get Project Layers

  1. Add Audome Node
  2. Operation: Get Projects
  3. Execute to see all projects with their layers

This returns each project with:

  • layers array (showing required field names)
  • curl_example (ready-to-use curl command)

Step 2: Generate Image

  1. Operation: Generate Image
  2. Project: Select your project from the dropdown
  3. 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

License

MIT


العربية

نظرة عامة

Audome Node هو node قوي لمجتمع n8n يتيح لك توليد صور ديناميكية من قوالب باستخدام Audome API. أتمتة إنشاء الصور مع دعم النص العربي والخطوط المخصصة وحقن البيانات الديناميكية.

المميزات

  • 🎨 قائمة المشاريع - احصل على جميع مشاريع Audome الخاصة بك
  • 🖼️ توليد الصور - إنشاء صور من قوالب ديناميكياً
  • 🔐 مصادقة آمنة - مصادقة API تعتمد على التوكن
  • 🌍 دعم كامل للعربية - معالجة RTL والخطوط العربية الأصلية
  • سريع وموثوق - مدعوم بـ Supabase

التثبيت

في n8n

  1. اذهب إلى الإعداداتCommunity Nodes
  2. تثبيت: @audome/n8n-nodes-audome
  3. حدّث المتصفح
  4. ابدأ استخدام Audome node!

التثبيت اليدوي

npm install @audome/n8n-nodes-audome

ثم أعد تشغيل n8n:

docker restart n8n
# أو
pm2 restart n8n

التكوين

1. إضافة Credentials

اذهب إلى Credentialsإضافة CredentialAudome 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.

الدعم

الترخيص

MIT

Discussion