Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.adrian.secureagentics.ai/llms.txt

Use this file to discover all available pages before exploring further.

Secureagentics secures and monitors your AI agents in production. This guide walks you through creating your account, generating an API key, and registering your first agent so you can start receiving events immediately.
1

Create your account

Go to secureagentics.ai and sign up. After email verification, you’ll land in your Secureagentics dashboard.
2

Generate an API key

In the dashboard, navigate to Settings → API Keys and click New API Key. Give it a descriptive name (e.g., my-first-agent) and copy the key — you won’t be able to view it again.
Store your API key securely. Never commit it to source control or expose it in client-side code.
3

Register your first agent

Call the Secureagentics API to register your agent. Pass your API key in the Authorization header:
curl -X POST https://api.secureagentics.ai/v1/agents \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "my-first-agent",
    "description": "Customer support chatbot",
    "framework": "openai"
  }'
You’ll receive a response containing your agent’s unique id. Save this — you’ll use it to send events.
4

Send your first event

Use your agent’s ID to send an activity event. Events represent things your agent does: prompts, completions, tool calls, and more.
curl -X POST https://api.secureagentics.ai/v1/agents/agt_abc123/events \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "prompt",
    "payload": {
      "model": "gpt-4o",
      "prompt": "Summarize the following customer complaint...",
      "tokens": 256
    }
  }'
5

View your agent in the dashboard

Open the Secureagentics dashboard. Your agent now appears under Agents with its first event logged. From here you can:
  • Browse the event timeline
  • Configure security policies
  • Set up alerts

Next steps

Core Concepts

Learn about agents, events, policies, and alerts.

Connect Agents

Explore all ways to instrument your agents.

Security Policies

Enforce rules on what your agents can do.

Integrations

Connect OpenAI, LangChain, and more.