Free overview of today's featured Wikipedia content - 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://wikipedia-intel-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Today's current news from Wikipedia - curated, fact-checked world events
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"limit": {
"default": 10,
"description": "Max news items to return",
"type": "number"
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://wikipedia-intel-production.up.railway.app/entrypoints/news/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'
Historical events that happened on a specific date
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"month": {
"description": "Month (1-12), defaults to today",
"type": "number",
"minimum": 1,
"maximum": 12
},
"day": {
"description": "Day (1-31), defaults to today",
"type": "number",
"minimum": 1,
"maximum": 31
},
"limit": {
"default": 10,
"description": "Max events to return",
"type": "number"
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://wikipedia-intel-production.up.railway.app/entrypoints/on-this-day/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'
Most read Wikipedia articles - trending topics people are searching for
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"limit": {
"default": 20,
"description": "Max articles to return",
"type": "number"
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://wikipedia-intel-production.up.railway.app/entrypoints/trending/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'
Get summary for a specific Wikipedia article by title
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "Article title (e.g., \"Albert_Einstein\" or \"Bitcoin\")"
}
},
"required": [
"title"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://wikipedia-intel-production.up.railway.app/entrypoints/article/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"title": "<Article title (e.g., \"Albert_Einstein\" or \"Bitcoin\")>"
}
}
'
Complete daily digest - featured article, news, trending, and historical events
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"newsLimit": {
"default": 5,
"type": "number"
},
"trendingLimit": {
"default": 10,
"type": "number"
},
"historyLimit": {
"default": 5,
"type": "number"
}
},
"required": [
"newsLimit",
"trendingLimit",
"historyLimit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://wikipedia-intel-production.up.railway.app/entrypoints/daily-digest/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"newsLimit": 0,
"trendingLimit": 0,
"historyLimit": 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://wikipedia-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://wikipedia-intel-production.up.railway.app/entrypoints/analytics-transactions/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'