Overview
API Endpoints
REST API reference
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
REST API reference
https://api.allternit.com/v1
GET /agents
{
"agents": [
{
"id": "agent_abc123",
"name": "Code Analyzer",
"status": "active",
"created_at": "2024-01-15T10:30:00Z"
}
]
}
POST /agents
{
"name": "My Agent",
"runtime": "gizzi-pro",
"skills": ["code", "web"]
}
POST /agents/{id}/run
{
"input": "Analyze this codebase",
"context": { "repo": "my-repo" }
}
GET /sessions/{id}
GET /sessions/{id}/messages
| Code | Meaning |
|---|---|
| 200 | Success |
| 400 | Bad Request |
| 401 | Unauthorized |
| 429 | Rate Limited |
| 500 | Server Error |