← Home

FAQ

Everything you need to know about ASI Biont — AI Multitool that replaces dozens of services, works proactively, sees connections, writes code, connects any service, and improves itself. AI courses.

What is ASI Biont?
ASI Biont is an AI Multitool that replaces dozens of services. Your AI agent writes and executes Python code, connects any API and database, handles email, invoices, and CRM. Remembers everything across sessions, learns from its own mistakes, improves its own code. Runs 24/7 on autopilot. Any model (GPT, Claude, DeepSeek, Gemini) — free. Ours — pay only for tokens. 1000 tokens to start!
How is ASI Biont different from ChatGPT?
ChatGPT only answers questions. ASI Biont writes code and takes action: connects to external services via universal connector, executes Python in a sandbox, manages tasks, works with Git, sends email, searches the web, translates text and more. It is not a chatbot — it is an AI engineer. courses.
What is the secure sandbox?
The sandbox is an isolated Python execution environment. It whitelists only safe builtins (bool, int, str, list, dict, len, range, sorted, etc.), blocks dangerous modules (os, subprocess, socket, sys, pathlib, shutil, multiprocessing, ctypes), blocks exec/eval/compile/open/__import__, and enforces a timeout. asyncio is available in a safe wrapper. Generated code runs in a separate thread with a configurable timeout.
Which services can be connected?
Any service via the universal connector: Gmail, Salesforce, HubSpot, Slack, Notion, Amo CRM, Trello, Jira, GitHub, GitLab, Telegram, VK, WhatsApp, Discord, Zoom, Google Drive, Dropbox, PayPal, Stripe, YooKassa, Google Calendar, Figma, WordPress, Twitter/X, Instagram, LinkedIn, YouTube, Docker, AWS, Google Cloud, OpenAI, Shopify, Wildberries, Ozon, Bitrix24 — and any custom REST API.
What is the universal credential connector?
Instead of pre-built integrations for each service, the universal connector lets you provide credentials (API keys, tokens, OAuth) for any service, and the AI uses them to connect. Supports any service including Gmail, GitHub, GitLab, Telegram, VK, WhatsApp, Discord, Slack, Zoom, Google Drive, Dropbox, Trello, Jira, Notion, PayPal, Stripe, YooKassa, Google Calendar, Figma, WordPress, Twitter/X, Instagram, LinkedIn, YouTube, Docker, AWS, Google Cloud, OpenAI, Shopify, Salesforce, HubSpot, and any REST API.
How do I get started?
Register on asibiont.com or open Telegram bot @asibiont_bot. You will get 1000 free tokens after signup. Just describe what you need in any language — the AI will write the code and execute it.
What are the interactive AI courses?
AI-powered interactive courses. Each course adapts to your progress — AI creates new lessons and tests based on your results. Available directions: programming (Python, JavaScript, TypeScript, Go, Rust), cybersecurity, DevOps, UI/UX design, Linux, Git, Data Science, mobile development, video editing, 3D modeling, English, Spanish, German, Chinese, marketing, finance, soft skills, robotics, algorithms, Machine Learning, Blockchain & Web3, React frontend, Docker & Kubernetes, game development, digital art & design, cloud architecture (AWS/GCP/Azure), Swift/iOS, Kotlin/Android, Node.js, Django & FastAPI, Flutter & Dart, computer networks (CCNA), system design, prompt engineering, C#/.NET, Arduino & IoT, SEO (search engine optimization), E-commerce (Wildberries & Ozon), Freelance, and more. All courses are completely free.

Browse all courses →
What is eternal memory?
Eternal Memory lets the AI remember everything across sessions. It uses a vector database for semantic search, stores conversation history, consolidates memories periodically, and can retrieve relevant context from past interactions. Memory is persistent and survives restarts.
What is autopilot?
Autopilot is a scanner engine that runs scheduled tasks. It periodically checks goals, tasks, reminders, and system conditions, then autonomously takes action based on the context. You can set it to run daily reports, monitor services, or execute recurring code.
Is my data safe?
Yes. Code runs in an isolated sandbox with no access to the host system. All data is encrypted at rest with AES-256 (Fernet), including conversation history, API keys, tokens and passwords. Credentials are stored securely — AI never sees your raw API keys or passwords. The sandbox blocks all dangerous operations (file system, network, subprocesses). OAuth2 tokens are stored per-user and never shared.
What is Vibe Coding Setup?
Vibe Coding Setup is a turnkey service: I configure your AI-powered development environment from scratch — tools, prompts, integrations, and workflow. You describe what you need — AI writes the code, you control the result. Websites, bots, APIs, dashboards. Price: 1200 USDT. Start in 60 minutes. No coding skills required.
Which languages does the AI support?
ASI Biont understands and responds in any language — Russian, English, Spanish, Chinese, and more. The AI communicates in the language you write in.
Can I connect my own API?
Yes. Through the universal connector you can pass credentials for any REST API. The AI writes Python code via execute_python that sends HTTP requests with your credentials and processes responses. Supports GET, POST, PUT, DELETE, PATCH. The AI can also set up autopilot for scheduled requests. Also supports OpenAPI/Swagger auto-discovery — just provide the base URL and AI discovers all endpoints.
Does ASI Biont work in Telegram or Web?
ASI Biont works as a Telegram bot @asibiont_bot and through the web dashboard at asibiont.com. The Telegram version has full functionality including voice messages. The web dashboard provides a richer interface for code editing, file management, and history browsing.
Can AI connect to my database?
Yes. AI can run SQL queries on your database via external_db_query. Supports: PostgreSQL, MySQL, MongoDB, Redis, ClickHouse, DuckDB, SQLite. You save the connection string through the universal connector, and AI executes queries with your authorization. AI never sees your credentials — the connection string is passed server-side. Also available: external_db_schemas for table structure discovery and external_db_test for connection testing.
How does AI connect to any REST API?
AI can automatically discover any REST API structure via discover_api. It loads OpenAPI/Swagger spec from standard paths (/openapi.json, /swagger.json, /api-docs, etc.), parses all endpoints, data schemas, and auth methods. After discovery, AI can generate correct API requests without manual setup. The test_connection tool verifies API availability (HTTP GET), database (7 types), or email server (IMAP) before starting work.
What about OAuth2 and Webhooks?
OAuth2: Built-in OAuth2 authorization for Google, GitHub, Slack, Notion. AI can initiate OAuth2 flow — you are redirected to the provider, grant access, and AI receives a token to work on your behalf. Tokens auto-refresh on expiry.

Webhooks: AI can receive webhooks from external services at /api/webhooks/{service}. Each event is signed with HMAC-SHA256 for authenticity verification. All webhooks are isolated per-user with a queue of up to 1000 events per user.
What is REST API and API Keys?
REST API v1 — programmatic interface to integrate ASI Biont with your services. Available endpoints: /api/v1/chat, /api/v1/missions, /api/v1/tasks, /api/v1/notes, /api/v1/integrations, /api/v1/events, API key management, outgoing webhooks, and scheduled tasks. Authentication via Authorization: Bearer asb_xxx. Keys are created in the dashboard, have expiry and scope (full, chat, webhook). Stored as SHA-256 hash. The server never knows your raw key.
What are outgoing webhooks?
Outgoing webhooks allow ASI Biont to send HTTP notifications to your server when specific events occur:

mission_completed — mission completed
task_created/completed — task created or completed
ai_message_sent — AI sent a message
scheduled_trigger — scheduled AI run triggered
webhook_received — incoming webhook received

You register a URL and a secret key. On each event, ASI Biont sends a POST request with a JSON body signed with HMAC-SHA256 in the X-Signature-256 header. Verify the signature with your secret — this guarantees the request is genuinely from ASI Biont.
What are scheduled tasks (cron)?
Scheduled tasks let AI automatically run your prompts at specific times using cron expressions. Examples:

0 9 * * * — daily at 09:00
*/15 * * * * — every 15 minutes
0 9 * * 1-5 — weekdays at 09:00
0 9,18 * * * — at 09:00 and 18:00 daily

You provide a prompt, AI executes it on schedule. The result is saved as a note and appears in your dashboard. All runs are logged in the event journal.
How does the affiliate program work?
Affiliate program — 20% recurring commission. You get a referral link in your dashboard. When someone follows your link, they have 7 days to register (the session cookie with the referral code lives that long). If they register in time — they are linked to you forever. You earn 20% from every token top-up, course purchase, and vibe coding setup service they buy. Commission is credited automatically with no time limits or caps. Withdraw anytime.