Home
Softono

Laravel N8n Client

Open source PHP
14
Stars
4
Forks
0
Issues
1
Watchers
1 year
Last Commit

 About Laravel N8n Client

A Laravel library for the n8n.io self-hosted API

Platforms

Web Self-hosted

Languages

PHP

Need Help Installing Laravel N8n Client?

We provide expert installation service for this software. Our team will install, configure, and secure Laravel N8n Client on your server. plans start at just $30.

Laravel N8n Client

View on GitHub

jpcaparas/laravel-n8n-client

Tests

A Laravel library that interfaces with the self-hosted n8n REST API.

SCR-20250107-rpsu

Installation

You can install the package via Composer:

composer require jpcaparas/laravel-n8n-client

Publish the configuration file:

php artisan vendor:publish --provider="JPCaparas\N8N\N8NServiceProvider" --tag="config"

Set these credentials inside your .env file:

N8N_BASE_URI=http://[your_n8n_instance]:[your_n8n_port]
N8N_API_TOKEN=[your_n8n_api_token]

Local testing

If you want to interact with the package locally, you can use the Laravel skeleton provided by orchestra/testbench and its associated Tinker REPL:

  1. Publish the configuration file to the Laravel skeleton.
composer test:publish
  1. Modify .env API credentials on the skeleton as needed:
N8N_BASE_URI=http://localhost:5678
N8N_API_TOKEN=[your_n8n_api_token]
  1. Enter the Tinker REPL:
composer test:tinker
  1. Create an instance of the N8N client:
$n8n = app(\JPCaparas\N8N\N8NClient::class);
  1. Make API requests using the N8N client:
$response = $n8n->get('valid-endpoint');
$response = $n8n->post('valid-endpoint', ['data' => 'value']);

There are also convenience methods for the most common API endpoints:

$response = $n8n->getWorkflows();
$response = $n8n->getWorkflow('workflow-id');
$response = $n8n->createWorkflow(['name' => 'New Workflow']);
$response = $n8n->updateWorkflow('workflow-id', ['name' => 'Updated Workflow']);

Tests

composer test

License

MIT