Developer API
AI-as-a-Service for your tools and applications.
Alphakek API gives developers access to some of our B2C functionalities—Meme Generator, DeFAI Terminal, and —via open, modular, and composable APIs. Designed for applications such as:
Chatbots
Image generation
Crypto research
Community engagement
Trade alerts
Drafting documents
Answering questions about a knowledge base
and much more
Modules
Further reading:
For pricing, refer to the API Pricing.
For code examples, refer to API Usage Examples or our Python SDK.
Authentification
To start using the API, the user must first obtain the access token. After logging in with Metamask or WalletConnect on alphakek.ai, open the API Keys tab on the user profile page.
Note that the newly created token will never be shown on the screen. Instead, it will be copied to the copy buffer immediately for security reasons.

Account Data
The /account
endpoint allows users to see their current balances of:
$AIKEK value in USD
This API endpoint is free to use.
GET /account HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Successful Response
{
"address": "text",
"chain_type": "ethereum",
"credits": 1,
"tokens": 0,
"tokens_usd": 0,
"bonuses": [
{
"usd_value": 1,
"description": "text"
}
],
"dialogs": {
"ANY_ADDITIONAL_PROPERTY": {
"messages": [
{
"author": "USER",
"text": "text"
}
],
"last_time_updated": "2025-06-26T14:32:11.807Z",
"title": "text",
"dialog_id": "text"
}
},
"max_dialogs": 10,
"tier": "BASIC",
"telegram_id": 1,
"balance_details": {
"eth_balance_tokens": 1,
"eth_balance_usd": 1,
"base_balance_tokens": 1,
"base_balance_usd": 1,
"solana_balance_tokens": 0,
"solana_balance_usd": 0,
"total_balance_tokens": 1,
"total_balance_usd": 1
}
}
Last updated