Evolution API and n8n using Authentication

How can I add a user and password (basic or header) autentication add on Evolution that was install on EasyPanel to be authenticate on N8N ?

Describe the problem/error/question

What is the error message (if any)?

Please share your workflow

(Select the nodes on your canvas and use the keyboard shortcuts CMD+C/CTRL+C and CMD+V/CTRL+V to copy and paste the workflow.)

Share the output returned by the last node

Information on your n8n setup

  • n8n version:
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app):
  • Operating system:

To authenticate with Evolution API using basic auth in n8n, you can use the **HTTP Request node**. Here’s how:

1. Add an HTTP Request node

2. Set the Authentication dropdown to “Basic Auth”

3. Enter your Evolution API username and password in the respective fields

4. Configure the rest of the request (URL, method, etc.)

If Evolution uses header-based authentication instead, select “Header Auth” and add the appropriate header name/value pair containing your credentials.

Make sure your Evolution API endpoint is accessible from your n8n instance. If you’re still having issues, check Evolution’s API documentation for specific authentication requirements.