Fun
L-Take detector API
Grades a statement like a timeline reply: based, mid, or fully mogged.
Price$0.01per request
MethodPOST
Route/v1/fun/l-take
StatusLive
MIME typeapplication/json
Rate limit30/minute
CacheNo cache
funtwittertakesbasedmogged
API URL
Integration docshttps://x402.hexl.dev/v1/fun/l-takeExample request
{
"statement": "Everyone who disagrees with this roadmap is lazy.",
"platform": "twitter"
}Example response
{
"verdict": "mogged",
"riskLevel": "high",
"reason": "Too absolute. Timeline will smell the overconfidence and start farming quote-posts.",
"saferRewrite": "I might be missing context, but this roadmap disagreement seems worth revisiting.",
"basedScore": 21,
"provider": "local-fallback"
}Input schema
{
"type": "object",
"required": [
"statement"
],
"properties": {
"statement": {
"type": "string",
"minLength": 1,
"maxLength": 4000,
"examples": [
"Everyone who disagrees with this roadmap is lazy."
]
},
"platform": {
"type": "string",
"examples": [
"twitter"
]
}
}
}Output schema
{
"type": "object",
"required": [
"verdict",
"riskLevel",
"reason",
"saferRewrite",
"basedScore",
"provider"
],
"properties": {
"verdict": {
"type": "string",
"enum": [
"based",
"mid",
"mogged"
]
},
"riskLevel": {
"type": "string",
"enum": [
"low",
"medium",
"high"
]
},
"reason": {
"type": "string"
},
"saferRewrite": {
"type": "string"
},
"basedScore": {
"type": "number",
"minimum": 0,
"maximum": 100
},
"provider": {
"type": "string"
}
}
}