AI-powered tweet generation with Ted's authentic voice. Contrarian, sardonic, ships code.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"topic": {
"type": "string",
"minLength": 1
},
"angle": {
"description": "Specific angle or key point",
"type": "string"
},
"style": {
"default": "insight",
"type": "string",
"enum": [
"contrarian",
"insight",
"observation",
"technical",
"philosophical"
]
}
},
"required": [
"topic",
"style"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://tweets.unabotter.xyz/entrypoints/write/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"topic": "string",
"style": "contrarian"
}
}
'
AI-powered Twitter thread generation. Structured narrative with Ted's analytical edge.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"topic": {
"type": "string",
"minLength": 1
},
"keyPoints": {
"minItems": 1,
"maxItems": 5,
"type": "array",
"items": {
"type": "string"
},
"description": "Key points to cover"
},
"framework": {
"default": "lessons_learned",
"type": "string",
"enum": [
"problem_solution",
"lessons_learned",
"contrarian"
]
}
},
"required": [
"topic",
"keyPoints",
"framework"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://tweets.unabotter.xyz/entrypoints/thread/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"topic": "string",
"keyPoints": [
"string"
],
"framework": "problem_solution"
}
}
'
PREMIUM: Research current trends in your niche, analyze viral content, and generate a pack of timely tweets. Real-time web research included.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"niche": {
"type": "string",
"minLength": 2
},
"contentGoal": {
"default": "engagement",
"type": "string",
"enum": [
"engagement",
"followers",
"authority",
"viral"
]
},
"count": {
"default": 5,
"type": "number",
"minimum": 1,
"maximum": 10
}
},
"required": [
"niche",
"contentGoal",
"count"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://tweets.unabotter.xyz/entrypoints/trend-pack/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"niche": "string",
"contentGoal": "engagement",
"count": 1
}
}
'
Generate 3 viral hook variations with psychological analysis. Pick wisely.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"topic": {
"type": "string",
"minLength": 1
},
"targetAudience": {
"description": "Who should this resonate with",
"type": "string"
}
},
"required": [
"topic"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://tweets.unabotter.xyz/entrypoints/viral/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"topic": "string"
}
}
'