Free overview of today — current date, day of week, notable info. Try before you buy.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://passionate-achievement-production-db44.up.railway.app/entrypoints/today/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Public holidays for any country and year
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"country": {
"type": "string",
"minLength": 2,
"maxLength": 2,
"description": "ISO 3166-1 alpha-2 country code (e.g., US, GB, DE, AU)"
},
"year": {
"description": "Year (default: current year)",
"type": "number"
}
},
"required": [
"country"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://passionate-achievement-production-db44.up.railway.app/entrypoints/holidays/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"country": "<ISO 3166-1 alpha-2 country code (e.g., US, GB, DE, AU)>"
}
}
'
Historical events that happened on a specific date
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"month": {
"type": "number",
"minimum": 1,
"maximum": 12,
"description": "Month (1-12)"
},
"day": {
"type": "number",
"minimum": 1,
"maximum": 31,
"description": "Day of month"
},
"limit": {
"default": 10,
"description": "Max events to return",
"type": "number"
}
},
"required": [
"month",
"day",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://passionate-achievement-production-db44.up.railway.app/entrypoints/events/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"month": 1,
"day": 1,
"limit": 0
}
}
'
Notable people born on a specific date
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"month": {
"type": "number",
"minimum": 1,
"maximum": 12,
"description": "Month (1-12)"
},
"day": {
"type": "number",
"minimum": 1,
"maximum": 31,
"description": "Day of month"
},
"limit": {
"default": 10,
"description": "Max births to return",
"type": "number"
}
},
"required": [
"month",
"day",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://passionate-achievement-production-db44.up.railway.app/entrypoints/births/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"month": 1,
"day": 1,
"limit": 0
}
}
'
Complete date context — holidays, events, births all in one call
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"date": {
"description": "Date in YYYY-MM-DD format (default: today)",
"type": "string"
},
"country": {
"default": "US",
"description": "Country for holidays",
"type": "string",
"minLength": 2,
"maxLength": 2
}
},
"required": [
"country"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://passionate-achievement-production-db44.up.railway.app/entrypoints/full-context/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"country": "<Country for holidays>"
}
}
'
Compare multiple dates — find common themes, differences, special days
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"dates": {
"minItems": 2,
"maxItems": 5,
"type": "array",
"items": {
"type": "string"
},
"description": "Array of dates in YYYY-MM-DD format"
},
"country": {
"default": "US",
"type": "string",
"minLength": 2,
"maxLength": 2
}
},
"required": [
"dates",
"country"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://passionate-achievement-production-db44.up.railway.app/entrypoints/compare-dates/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"dates": [
"string"
],
"country": "string"
}
}
'
Payment analytics summary
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"windowMs": {
"description": "Time window in ms (e.g., 86400000 for 24h)",
"type": "number"
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://passionate-achievement-production-db44.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://passionate-achievement-production-db44.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://passionate-achievement-production-db44.up.railway.app/entrypoints/analytics-csv/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"windowMs": 0
}
}
'