Skip to content

Network & Privacy

Aigentic is designed with privacy as a core principle. Zero telemetry, encrypted credential handling, and transparent data flows.

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

The only outbound connections from the Aigentic platform are ones you explicitly configure:

ConnectionWhen It HappensDestination
AI provider API callsWhen an agent processes a messageAnthropic, OpenAI, xAI, Z.AI, MiniMax, or NVIDIA NIM endpoints
Channel connectionsWhen channels are activeDiscord, Telegram, or Slack APIs
Webhook deliveryWhen a configured webhook fires or is testedYour configured webhook URL

All connections use HTTPS (TLS 1.2 or later).

API keys are transmitted only to the AI provider’s API endpoint, and only over HTTPS:

  1. The key is decrypted from the vault in memory.
  2. It is placed in the Authorization header of the HTTPS request.
  3. The request is sent directly to the provider’s endpoint.
  4. 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
ProviderAPI Endpoint
Anthropichttps://api.anthropic.com/v1/
OpenAIhttps://api.openai.com/v1/
xAIhttps://api.x.ai/v1/
Z.AIhttps://open.bigmodel.cn/api/paas/v4/
MiniMaxhttps://api.minimaxi.chat/v1/
NVIDIA NIMhttps://integrate.api.nvidia.com/v1/

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

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.

All credentials (API keys, bot tokens) are encrypted server-side. See Vault Encryption for technical details.