Block 1 - Note: Webhook Input
- 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 provides a powerful utility for converting a specific time from one time zone to another by leveraging the TimeZoneDB API. This is an essential tool for anyone coordinating global...
n8n-nodes-base.stickynote, n8n-nodes-base.webhook, n8n-nodes-base.respondtowebhook, n8n-nodes-base.httprequest
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 provides a powerful utility for converting a specific time from one time zone to another by leveraging the TimeZoneDB API. This is an essential tool for anyone coordinating global teams, scheduling international events, or simply needing to understand time differences across the world.
Receive Time Conversion Request: This node acts as the entry point for the workflow, listening for incoming POST requests. It's configured to expect a JSON body containing the following parameters:
Important: Your TimeZoneDB API key is handled securely by n8n's credential system and should not be included in the webhook body.
Convert Timezone (TimeZoneDB): This node makes an HTTP GET request to the TimeZoneDB API (api.timezonedb.com). It dynamically constructs the API request URL using the fromZone, toZone, and time values extracted from your webhook request. Your API key is securely retrieved from n8n's pre-configured credentials and automatically added as a query parameter. The API performs the conversion and returns a JSON object containing the converted time and other timezone details.
Respond with Converted Time: This node sends the full conversion result received from TimeZoneDB back to the service that initiated the webhook.
When you trigger the webhook, send a POST request with a JSON body structured as follows:
{
"fromZone": "America/New_York",
"toZone": "Asia/Manila",
"time": 1678886400 // Unix timestamp for 2023-03-15 00:00:00 UTC (example)
}
Note: You'll need to obtain a free or paid API Key from TimeZoneDB to use their API.
The workflow will return a JSON response similar to this (results will vary based on inputs):
{
"status": "OK",
"message": "",
"fromZoneName": "America/New_York",
"fromAbbreviation": "-04",
"fromTimestamp": 1678886400,
"toZoneName": "Asia/Manila",
"toAbbreviation": "+08",
"toTimestamp": 1678933200,
"offset": 46800 // difference in seconds
}
Get a TimeZoneDB API Key:
Create an n8n Credential for TimeZoneDB:
Import Workflow:
Configure TimeZoneDB API Node:
Configure Webhook Path:
Activate Workflow:
This time zone converter is an essential building block that can be significantly expanded and integrated:
Robust Error Handling & Input Validation:
Flexible Time Input:
Human-Readable Output:
Automated Meeting/Event Scheduling:
Dynamic Website Content:
Smart Notification Delivery:
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 | Convert time zones with TimeZoneDB API integration |
|---|---|
| Complexity | intermediate |
| Nodes | 6 |
| Categories | Personal Productivity |
| Author | ist00dent |
| Published | 03 Jun 2025 |
Use the JSON export at /data/workflows/4624/4624.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 provides a powerful utility for converting a specific time from one time zone to another by leveraging the TimeZoneDB API. This is an essential tool for anyone coordinating global...
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 Personal Productivity use case.