Integration Guide

Connect Elhnon's generative art systems with your platforms or workflows.

1. Connect via API

Use our REST API to generate and retrieve algorithmic artwork directly from your application or website.

                        
GET /api/generate?url=YOUR_PROJECT_ID

                    

2. Embed in Web Apps

Use our iframe widget to display dynamic generative art in your applications.

                        
<iframe 
    src="https://elhnon.com/art/project/12345" 
    width="100%" 
    height="500" 
    allowfullscreen
></iframe>
                        
                    

3. Custom Integrations

Use webhooks or our SDK to connect with creative tools like Figma, Blender, or DALL·E.

                        
{
    "callback_url": "https://yourapi.com/webhook",
    "project": "generative-portrait",
    "format": "SVG"
}
                        
                    

4. Collaborative Workflows

Invite developers and artists to work on integrations via our open-source GitHub repo.

🔗 Visit Integration Project

Sample Code

JavaScript SDK


const elhnon = new Elhnon({
    apiKey: "YOUR_API_KEY",
    project: "abstract-wave",
    width: 800,
    height: 600
});

                

SVG Output


<svg ...>
    <path d="M100,200 L..." fill="#f00" />
</svg>
                
                

Need Help?

Integrating Elhnon's tools into your stack? Our engineers will help with setup and troubleshooting.

💬 Get Integration Support
```