The Bonktah API allows you to integrate our meme-savvy AI into your applications. Built on ElizaOS architecture with custom endpoints for Bonktah-specific features, our API provides:
💬 Real-time Chat
Connect users with Bonktah for engaging conversations about crypto, memes, and life
🧠 Conscience Access
Retrieve and showcase community-voted best conversations
🔌 Easy Integration
SDKs for popular languages and frameworks make integration a breeze
🔐 Authentication
All API requests require authentication using an API key. Include your key in the Authorization header:
{
"response": "Meme coins are the wild west of crypto! 🤠 They bring fun and community to finance...",
"messageId": "msg_789xyz",
"timestamp": "2025-05-24T12:00:00Z",
"personality": "casual",
"saveToConscience": true,
"sentiment": "positive",
"topics": ["crypto", "meme-coins", "community"],
"usage": {
"tokensUsed": 125,
"remainingTokens": 99875
}
}
cURL
curl -X POST https://api.bonktah.xyz/v1/chat \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"message": "Hey Bonktah, what'\''s your take on meme coins?",
"userId": "user_12345",
"sessionId": "session_abc123"
}'