AI-powered summarization. Extracts key insights with Ted's analytical edge.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"url": {
"type": "string",
"format": "uri"
},
"text": {
"type": "string"
},
"maxLength": {
"default": 500,
"type": "number",
"minimum": 100,
"maximum": 2000
},
"keywords": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"maxLength"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://research.unabotter.xyz/entrypoints/summarize/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"maxLength": 100
}
}
'
PREMIUM: Real-time web research with multi-source synthesis. Searches the web, extracts content, cross-references sources, and synthesizes findings with AI.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"topic": {
"type": "string",
"minLength": 3
},
"questions": {
"type": "array",
"items": {
"type": "string"
}
},
"depth": {
"default": "thorough",
"type": "string",
"enum": [
"quick",
"thorough",
"exhaustive"
]
},
"focusAreas": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"topic",
"depth"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://research.unabotter.xyz/entrypoints/deep-research/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"topic": "string",
"depth": "quick"
}
}
'
AI-powered research analysis with skeptical framework. Deep dive into any topic.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"topic": {
"type": "string",
"minLength": 3
},
"questions": {
"type": "array",
"items": {
"type": "string"
}
},
"skepticalMode": {
"default": true,
"type": "boolean"
}
},
"required": [
"topic",
"skepticalMode"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://research.unabotter.xyz/entrypoints/research/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"topic": "string",
"skepticalMode": true
}
}
'
Compare options with honest trade-off analysis.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"items": {
"minItems": 2,
"maxItems": 10,
"type": "array",
"items": {
"type": "string"
}
},
"criteria": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"items"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://research.unabotter.xyz/entrypoints/compare/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"items": [
"string"
]
}
}
'