Developer API

AI-as-a-Service for your tools and applications.

The Enterprise API is the main access point for 🐸 AIKEK Memelord and 🧙🏻‍♂️ AIKEK Wizard universal agents.

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


Cover

Alpha Alerts API

Integrate for real-time market insights.

Further reading:

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.

API Keys tab on the user profile page

Account Data


The /account endpoint allows users to see their current balances of:

This API endpoint is free to use.

Get User Info

get
Authorizations
Responses
200
Successful Response
application/json
get
GET /account HTTP/1.1
Host: 
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

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
  }
}
API Usage Examples

Last updated