Free overview - sample entity lookup to 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://wiki-intel-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Search for entities by name/keyword across Wikidata
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search query"
},
"limit": {
"default": 10,
"type": "number",
"minimum": 1,
"maximum": 50
},
"language": {
"default": "en",
"type": "string"
}
},
"required": [
"query",
"limit",
"language"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://wiki-intel-production.up.railway.app/entrypoints/search/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"query": "<Search query>",
"limit": 1,
"language": "string"
}
}
'
Get Wikipedia summary for an entity by title
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "Wikipedia article title (e.g., \"Elon Musk\")"
},
"language": {
"default": "en",
"type": "string"
}
},
"required": [
"title",
"language"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://wiki-intel-production.up.railway.app/entrypoints/summary/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"title": "<Wikipedia article title (e.g., \"Elon Musk\")>",
"language": "string"
}
}
'
Get structured Wikidata entity details by Wikidata ID
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"entityId": {
"type": "string",
"description": "Wikidata entity ID (e.g., \"Q937\" for Albert Einstein)"
},
"language": {
"default": "en",
"type": "string"
}
},
"required": [
"entityId",
"language"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://wiki-intel-production.up.railway.app/entrypoints/details/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"entityId": "<Wikidata entity ID (e.g., \"Q937\" for Albert Einstein)>",
"language": "string"
}
}
'
Get entities related to a given Wikidata entity
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"entityId": {
"type": "string",
"description": "Wikidata entity ID (e.g., \"Q937\")"
},
"language": {
"default": "en",
"type": "string"
}
},
"required": [
"entityId",
"language"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://wiki-intel-production.up.railway.app/entrypoints/related/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"entityId": "<Wikidata entity ID (e.g., \"Q937\")>",
"language": "string"
}
}
'
Look up multiple entities at once with summaries
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"queries": {
"minItems": 1,
"maxItems": 10,
"type": "array",
"items": {
"type": "string"
},
"description": "Array of entity names to look up"
},
"language": {
"default": "en",
"type": "string"
}
},
"required": [
"queries",
"language"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://wiki-intel-production.up.railway.app/entrypoints/batch/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"queries": [
"string"
],
"language": "string"
}
}
'
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://wiki-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://wiki-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://wiki-intel-production.up.railway.app/entrypoints/analytics-csv/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"windowMs": 0
}
}
'