Block 1 - Note: Webhook Trigger
- Type / Role
- n8n-nodes-base.stickyNote - stickyNote
- Config choices
- Version 1
This workflow is provided as-is. Please review and test before using in production.
This n8n template allows you to perform real time currency conversions by simply sending a webhook request. By integrating with the ExchangeRate.host API, you can get up to date exchange rates for ...
n8n-nodes-base.stickynote, n8n-nodes-base.httprequest, n8n-nodes-base.webhook, n8n-nodes-base.respondtowebhook
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by ist00dent.
Original n8n.io sourceThis n8n template allows you to perform real-time currency conversions by simply sending a webhook request. By integrating with the ExchangeRate.host API, you can get up-to-date exchange rates for over 170 world currencies, making it an incredibly useful tool for financial tracking, e-commerce, international business, and personal budgeting.
Receive Conversion Request Webhook: This node acts as the entry point for the workflow, listening for incoming POST requests. It's configured to expect a JSON body containing:
Important: The ExchangeRate.host API access_key is handled securely by n8n's credential system and should not be included in the webhook body or headers.
Convert Currency: This node makes an HTTP GET request to the ExchangeRate.host API (api.exchangerate.host). It dynamically constructs the URL using the from, to, and amount from the webhook body. Your API access key is securely retrieved from n8n's pre-configured credentials (HTTP Query Auth type) and automatically added as a query parameter (access_key). The API then performs the conversion and returns a JSON object with the conversion details.
Respond with Converted Amount: This node sends the full currency conversion result received from ExchangeRate.host back to the service that initiated the webhook.
When you trigger the webhook, send a POST request with a JSON body structured as follows:
{
"from": "USD",
"to": "PHP",
"amount": 100
}
The workflow will return a JSON response similar to this (results will vary based on currencies and amount):
{
"date": "2025-06-03",
"historical": false,
"info": {
"rate": 58.749501,
"timestamp": 1717398188
},
"query": {
"amount": 100,
"from": "USD",
"to": "PHP"
},
"result": 5874.9501,
"success": true
}
Get an ExchangeRate.host Access Key:
Create an n8n Credential for ExchangeRate.host:
Import Workflow:
Configure ExchangeRate.host API Node:
Configure Webhook Path:
Activate Workflow:
This workflow is a powerful starting point. Here's how you can make it even more robust and integrated:
Robust Error Handling:
Input Validation & Defaults:
Logging & Auditing:
Rate Limits & Caching:
Format & Rounding:
Alerting on Significant Changes:
Integration with Payment Gateways:
Multi-currency Pricing for Products:
This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
| Workflow | Currency converter via webhook using ExchangeRate.host |
|---|---|
| Complexity | intermediate |
| Nodes | 6 |
| Categories | Crypto Trading |
| Author | ist00dent |
| Published | 02 Jun 2025 |
Use the JSON export at /data/workflows/4602/4602.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
This n8n template allows you to perform real time currency conversions by simply sending a webhook request. By integrating with the ExchangeRate.host API, you can get up to date exchange rates for ...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Crypto Trading use case.