Other No-Code Workflows
Beyond Zapier, Make.com, and Bubble.io, APITemplate.io works with many other platforms through its REST API or direct integrations.
n8n
n8n is an open-source workflow automation tool. APITemplate.io has a built-in integration:
- In n8n, add a new node and search for APITemplate.io
- Set up your credentials with your API key
- Configure the node to create PDFs or images
See the n8n credentials documentation for setup details.
Direct URL (no API key needed)
For image generation, you can use Direct URLs — simple HTTP GET requests that generate images from query string parameters. No API key is required in the URL itself.
This works anywhere you can embed an image URL:
- WordPress
- Webflow
- Email campaigns
- Open Graph meta tags
HTTP/HTTPS components
Most automation platforms have a generic HTTP/HTTPS module that can call any REST API. You can use this to connect APITemplate.io with platforms that don't have a native integration:
- Add an HTTP module to your workflow
- Set the method to POST
- Set the URL to
https://rest.apitemplate.io/v2/create-pdf?template_id=YOUR_TEMPLATE_ID - Add headers:
X-API-KEY: your API keyContent-Type:application/json
- Set the body to your JSON data
This approach works with:
- Power Automate (Microsoft)
- Pipedream
- Tray.io
- Workato
- UiPath (also has a dedicated library)
- Any platform with HTTP request capabilities
Webhooks
For event-driven workflows, use APITemplate.io's async mode with webhooks:
- Make an API call with
async=true - Specify a webhook URL in your request
- When the document is ready, APITemplate.io sends a POST to your webhook with the download URL
This is useful for:
- Processing large batches without blocking
- Triggering downstream actions when documents are ready
- Building event-driven architectures