Network & Privacy
Aigentic is designed with privacy as a core principle. Zero telemetry, encrypted credential handling, and transparent data flows.
Zero Telemetry
Section titled “Zero Telemetry”Aigentic sends zero telemetry, analytics, or usage data to any third-party service. There are no:
- Crash reporting services
- Usage analytics
- Feature flags or remote configuration
- Health check pings to third parties
- Tracking pixels or cookies
Data Flow
Section titled “Data Flow”The only outbound connections from the Aigentic platform are ones you explicitly configure:
| Connection | When It Happens | Destination |
|---|---|---|
| AI provider API calls | When an agent processes a message | Anthropic, OpenAI, xAI, Z.AI, MiniMax, or NVIDIA NIM endpoints |
| Channel connections | When channels are active | Discord, Telegram, or Slack APIs |
| Webhook delivery | When a configured webhook fires or is tested | Your configured webhook URL |
All connections use HTTPS (TLS 1.2 or later).
API Key Handling
Section titled “API Key Handling”Transmission Security
Section titled “Transmission Security”API keys are transmitted only to the AI provider’s API endpoint, and only over HTTPS:
- The key is decrypted from the vault in memory.
- It is placed in the
Authorizationheader of the HTTPS request. - The request is sent directly to the provider’s endpoint.
- TLS encrypts the entire request in transit.
API keys are never:
- Exposed in the browser
- Logged to disk in plaintext
- Included in error reports
- Shared between agents
Provider Endpoints
Section titled “Provider Endpoints”| Provider | API Endpoint |
|---|---|
| Anthropic | https://api.anthropic.com/v1/ |
| OpenAI | https://api.openai.com/v1/ |
| xAI | https://api.x.ai/v1/ |
| Z.AI | https://open.bigmodel.cn/api/paas/v4/ |
| MiniMax | https://api.minimaxi.chat/v1/ |
| NVIDIA NIM | https://integrate.api.nvidia.com/v1/ |
What Data Do AI Providers See?
Section titled “What Data Do AI Providers See?”When you chat with an agent, the following data is sent to the AI provider:
- The agent’s system prompt
- The conversation history (within the context window)
- Your message
- Tool definitions (if tools are enabled)
The AI provider does not receive:
- Your API keys for other providers
- Your channel bot tokens
- Your account information
- Data from other agents or other users
BYOK (Bring Your Own Key)
Section titled “BYOK (Bring Your Own Key)”Aigentic uses a BYOK model. You provide your own API keys for AI providers. This means:
- You control the billing relationship with each provider.
- You control data retention per your agreement with each provider.
- You can revoke access at any time by rotating your API key.
- Aigentic never sees your prompts or responses — they go directly to the provider.
Credential Storage
Section titled “Credential Storage”All credentials (API keys, bot tokens) are encrypted server-side. See Vault Encryption for technical details.