Glossary
Key terms and concepts used throughout the Argon Bot API.
Core Concepts
Authentication & Security
Authorization: Bot <token> header or as a path segment: /api/bot/<token>/.... Never share your token publicly.SendMessages, ManageChannels, KickMembers. Permissions are granted via archetypes assigned to the bot.Real-time
GET /IEvents/v1/Stream connection and receive JSON events in real time. Supports automatic reconnection via Last-Event-ID.Members (member join/leave/update) and Presence (online status changes). Requested during bot verification.Data & IDs
int64 (snowflake) identifying a message within a channel. In JavaScript, use BigInt since these values exceed Number.MAX_SAFE_INTEGER.int64 used for message deduplication. If the server receives a message with the same random ID from the same bot, it returns the existing message instead of creating a duplicate.API Versioning
v20260401). No contract hash — may be modified or removed.