Fun
AiBlockchainify API
Translates a normal concept into maximally unserious AI/Web3 pitch language.
Price$0.01per request
MethodPOST
Route/v1/fun/ai-blockchain-ify
StatusLive
MIME typeapplication/json
Rate limit40/minute
CacheNo cache
funweb3aipitchbuzzword
API URL
Integration docshttps://x402.hexl.dev/v1/fun/ai-blockchain-ifyExample request
{
"concept": "image captioning"
}Example response
{
"translated": "image captioning is now an agentic, chain-aware intent substrate that unlocks real-time semantic liquidity across composable AI primitives.",
"buzzwords": [
"agentic",
"chain-aware",
"intent substrate",
"semantic liquidity",
"composable primitives"
],
"provider": "local-fallback"
}Input schema
{
"type": "object",
"required": [
"concept"
],
"properties": {
"concept": {
"type": "string",
"minLength": 1,
"maxLength": 4000,
"examples": [
"image captioning"
]
}
}
}Output schema
{
"type": "object",
"required": [
"translated",
"buzzwords",
"provider"
],
"properties": {
"translated": {
"type": "string"
},
"buzzwords": {
"type": "array",
"items": {
"type": "string"
}
},
"provider": {
"type": "string"
}
}
}