Integrate AutoGineer into your applications with our powerful REST API. Access templates, connect with experts, and build automation tools for your users.
Get up and running with the AutoGineer API in just a few steps.
Sign up for a free account and generate your API key from the dashboard.
Install one of our official SDKs or use the REST API directly.
Start fetching templates and building amazing automation tools.
// Initialize the AutoGineer SDK
import { AutoGineerClient } from '@autogineer/sdk';
const client = new AutoGineerClient({
apiKey: 'your-api-key-here',
baseUrl: 'https://api.autogineer.com'
});
// Get templates by category
async function getEcommerceTemplates() {
try {
const templates = await client.templates.list({
category: 'E-commerce',
limit: 10
});
console.log(`Found ${templates.length} templates`);
return templates;
} catch (error) {
console.error('Error fetching templates:', error);
}
}
// Download a specific template
async function downloadTemplate(templateId) {
const template = await client.templates.get(templateId);
const workflow = await client.templates.download(templateId);
// workflow contains the n8n JSON that can be imported
return workflow;
}Built for developers, designed for scale.
Clean, predictable REST endpoints with JSON responses
Secure API key authentication with rate limiting
Fair usage policies with generous rate limits
Real-time notifications for template updates and events
Complete reference for all available endpoints.
Retrieve a list of workflow templates
Get detailed information about a specific template
Submit a new template to the library
Get all available template categories
Browse available n8n experts
Submit a request to hire an expert
Get started quickly with our official SDKs for popular programming languages.
Official SDK for JavaScript and Node.js applications
npm install @autogineer/sdkPython SDK for easy integration with Python applications
pip install autogineer-sdkGo SDK for high-performance applications
go get github.com/autogineer/go-sdkPHP SDK for web applications and WordPress plugins
composer require autogineer/php-sdkGet your API key and start integrating AutoGineer into your applications today.