Free overview of today's US TV schedule - 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://gleaming-gratitude-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Search for TV shows by name
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Show name to search for"
},
"limit": {
"default": 10,
"description": "Max results to return",
"type": "number"
}
},
"required": [
"query",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://gleaming-gratitude-production.up.railway.app/entrypoints/search/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"query": "<Show name to search for>",
"limit": 0
}
}
'
Get detailed info about a specific show by ID
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"showId": {
"type": "number",
"description": "TVMaze show ID"
}
},
"required": [
"showId"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://gleaming-gratitude-production.up.railway.app/entrypoints/show-details/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"showId": 0
}
}
'
Get full episode list for a show
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"showId": {
"type": "number",
"description": "TVMaze show ID"
},
"season": {
"description": "Filter by season number",
"type": "number"
}
},
"required": [
"showId"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://gleaming-gratitude-production.up.railway.app/entrypoints/episodes/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"showId": 0
}
}
'
Get TV schedule for a specific date and country
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"date": {
"description": "Date in YYYY-MM-DD format (defaults to today)",
"type": "string"
},
"country": {
"default": "US",
"description": "Country code (US, GB, AU, etc.)",
"type": "string"
},
"limit": {
"default": 50,
"description": "Max results",
"type": "number"
}
},
"required": [
"country",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://gleaming-gratitude-production.up.railway.app/entrypoints/schedule/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"country": "<Country code (US, GB, AU, etc.)>",
"limit": 0
}
}
'
Compare multiple shows side by side
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"showIds": {
"minItems": 2,
"maxItems": 5,
"type": "array",
"items": {
"type": "number"
},
"description": "Array of TVMaze show IDs to compare"
}
},
"required": [
"showIds"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://gleaming-gratitude-production.up.railway.app/entrypoints/compare/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"showIds": [
0
]
}
}
'
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://gleaming-gratitude-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://gleaming-gratitude-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://gleaming-gratitude-production.up.railway.app/entrypoints/analytics-csv/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"windowMs": 0
}
}
'