Skip to main content

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:

  1. In n8n, add a new node and search for APITemplate.io
  2. Set up your credentials with your API key
  3. 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:

  1. Add an HTTP module to your workflow
  2. Set the method to POST
  3. Set the URL to https://rest.apitemplate.io/v2/create-pdf?template_id=YOUR_TEMPLATE_ID
  4. Add headers:
    • X-API-KEY: your API key
    • Content-Type: application/json
  5. 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:

  1. Make an API call with async=true
  2. Specify a webhook URL in your request
  3. 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

Further reading