Documentation Index
Fetch the complete documentation index at: https://docs.encrata.com/llms.txt
Use this file to discover all available pages before exploring further.
For developers
This guide shows you how to point your AI agent at Encrata’sauth.md and configure it for autonomous operation. Whether you’re building a custom agent, using an orchestration framework, or configuring an AI coding tool, the setup is the same.
Quick start
- Get an API key from encrata.com/api-keys
- Point your agent at
https://encrata.com/auth.md - Provide the API key to your agent’s configuration
Option A: Provide the API key directly
If you already have an API key, just configure your agent with it:Option B: Let the agent authenticate
Point your agent atauth.md and provide credentials. The agent will:
- Fetch
https://encrata.com/auth.md - Parse the authentication steps
- Login with your credentials
- Create a named API key
- Use the key for all subsequent operations
System prompt example
Option C: MCP configuration
For MCP-capable platforms, add Encrata as a server:- Claude Code
- Cursor
- Windsurf
Framework integration
LangChain
CrewAI
Custom agent
Key management best practices
Create named keys per agent
Create named keys per agent
Give each agent its own named key so you can revoke individually without disrupting other agents:
Rotate keys periodically
Rotate keys periodically
While Encrata keys don’t expire, rotating them periodically limits blast radius if one is compromised.
Never commit keys to source control
Never commit keys to source control
Use environment variables or secret managers:
Monitor credit usage
Monitor credit usage
Set up alerts when credits drop below a threshold. Your agent should check
GET /api/credits before batch operations.Rate limits
| Plan | Requests/minute | Requests/day |
|---|---|---|
| Free | 10 | 100 |
| Pro | 60 | 5,000 |
| Enterprise | 300 | Unlimited |
Retry-After header on 429 responses and implement exponential backoff.
Monitoring agent activity
All API calls made with your key are logged in your dashboard. You can:- See which endpoints your agent called
- Track credit consumption over time
- Identify unusual patterns
- Revoke a key instantly if needed