Can I use Metricool with n8n?
How to connect Metricool with n8n using the API
Metricool doesn't currently offer an official integration with n8n like it does with Make or Zapier. However, if you use n8n, you can connect your workflows to Metricool via our API.
What you need
- A Metricool account with access to the Metricool API
- A configured workspace in n8n
- Basic knowledge of HTTP requests in n8n
Steps to use Metricool in n8n
- Check the official API documentation
Find the available endpoints, methods, authentication, and examples here:
👉 Metricool API documentation
- Create a new workflow in n8n
Use the HTTP Request node to make calls to the API.
- Authentication
Add your access token as an HTTP header:
- Key:
Authorization
- Value:
Bearer YOUR_TOKEN
👉 You can find more details in n8n's official documentation on authentication methods: “Supported authentication methods” section
- Configure the endpoint call
For example, to retrieve your connected accounts:
- Method:
GET
- URL:
https://api.metricool.com/v1/accounts
- Process the response and continue your workflow
You can use other n8n nodes to transform, store, or send the data to other tools.
Keep in mind
- This is not an official integration and may require technical knowledge.
- If you encounter errors, check the parameters and format expected by each endpoint.
Updated on: 04/07/2025
Thank you!