Free overview - sample timezones and countries available
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://timezone-intel-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Get current time in any timezone with DST info
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"timezone": {
"type": "string",
"description": "IANA timezone (e.g., America/New_York, Europe/London)"
}
},
"required": [
"timezone"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://timezone-intel-production.up.railway.app/entrypoints/current-time/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"timezone": "<IANA timezone (e.g., America/New_York, Europe/London)>"
}
}
'
Convert a specific time from one timezone to another
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"fromTimezone": {
"type": "string",
"description": "Source timezone (e.g., America/New_York)"
},
"toTimezone": {
"type": "string",
"description": "Target timezone (e.g., Europe/London)"
},
"dateTime": {
"type": "string",
"description": "DateTime to convert (format: 2026-02-01 10:00:00)"
}
},
"required": [
"fromTimezone",
"toTimezone",
"dateTime"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://timezone-intel-production.up.railway.app/entrypoints/convert/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"fromTimezone": "<Source timezone (e.g., America/New_York)>",
"toTimezone": "<Target timezone (e.g., Europe/London)>",
"dateTime": "<DateTime to convert (format: 2026-02-01 10:00:00)>"
}
}
'
Get public holidays for a country and year
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"countryCode": {
"type": "string",
"minLength": 2,
"maxLength": 2,
"description": "ISO 3166-1 alpha-2 country code (e.g., US, GB, DE)"
},
"year": {
"description": "Year (defaults to current year)",
"type": "number"
}
},
"required": [
"countryCode"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://timezone-intel-production.up.railway.app/entrypoints/holidays/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"countryCode": "<ISO 3166-1 alpha-2 country code (e.g., US, GB, DE)>"
}
}
'
Get current time in multiple timezones at once
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"timezones": {
"minItems": 2,
"maxItems": 10,
"type": "array",
"items": {
"type": "string"
},
"description": "Array of IANA timezones"
}
},
"required": [
"timezones"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://timezone-intel-production.up.railway.app/entrypoints/multi-zone/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"timezones": [
"string"
]
}
}
'
Complete timezone report: current time, upcoming holidays, and next DST change
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"timezone": {
"type": "string",
"description": "IANA timezone (e.g., America/New_York)"
},
"countryCode": {
"type": "string",
"minLength": 2,
"maxLength": 2,
"description": "ISO country code for holidays (e.g., US)"
}
},
"required": [
"timezone",
"countryCode"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://timezone-intel-production.up.railway.app/entrypoints/full-report/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"timezone": "<IANA timezone (e.g., America/New_York)>",
"countryCode": "<ISO country code for holidays (e.g., US)>"
}
}
'
Payment analytics summary
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"windowMs": {
"description": "Time window in ms",
"type": "number"
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://timezone-intel-production.up.railway.app/entrypoints/analytics/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"windowMs": 0
}
}
'
analytics-transactions
Invoke
Recent payment transactions
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"windowMs": {
"type": "number"
},
"limit": {
"default": 50,
"type": "number"
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://timezone-intel-production.up.railway.app/entrypoints/analytics-transactions/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'
Export payment data as CSV
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"windowMs": {
"type": "number"
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://timezone-intel-production.up.railway.app/entrypoints/analytics-csv/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"windowMs": 0
}
}
'