🔌 ACT Integrations
Secure any AI framework with ACT — from OpenAI to custom agents
OpenAI Assistants
Add fine-grained permissions to OpenAI Assistants API with ACT middleware
LangChain
Enforce policies on LangChain agents, tools, and chains
Microsoft Autogen
Control multi-agent systems with capability-based security
Azure OpenAI
Secure Azure OpenAI deployments with ACT governance
Anthropic Claude
Add authorization layer to Claude AI agents and tool use
Custom Agents
Integrate ACT with any custom AI agent or LLM implementation
REST API
Use ACT with any language or framework via REST endpoints
Quick Integration Example
Here's how easy it is to add ACT to your AI agent:
⚠️ Authentication Required
All requests to https://api.acttokens.com require:
- API Key (in
X-Api-Keyheader) - Platform authentication - Capability Token (in request body) - Agent authorization
C# (Custom Agent)
// Use ACT REST API to validate agent actions
var client = new HttpClient();
client.DefaultRequestHeaders.Add("X-Api-Key", "your_api_key");
var request = new {
requestId = Guid.NewGuid().ToString(),
capabilityToken = "agent_token",
action = "send_email",
resourceId = "api://email/send"
};
var response = await client.PostAsJsonAsync(
"https://api.acttokens.com/v1/enforce", request);
if (response.IsSuccessStatusCode) {
var result = await response.Content
.ReadAsAsync<object>();
// Check decision and execute action
}Ready to Integrate?
Start securing your AI agents in minutes