Documentation Index
Fetch the complete documentation index at: https://mintlify.com/everruns/everruns/llms.txt
Use this file to discover all available pages before exploring further.
POST /v1/agents
Create a new agent with the specified configuration. Agents define the system prompt, capabilities, and default model for agentic sessions.Request Body
Agent name for display purposes. Maximum 2 KB.
Base system prompt for the agent. Capability prompts will be prepended to this. Maximum 1 MB.
Optional description of the agent’s purpose. Maximum 10 KB.
UUID of the default LLM model to use. Falls back to system default if not specified.
List of capability references to enable. Maximum 250 items.Each capability can be:
- Simple string reference:
"current_time" - Object with config:
{ "ref": "web_fetch", "config": { "timeout_ms": 30000 } }
Optional client-supplied UUID. If provided, must be a valid UUID v4 or v7.
Response
Returns the created agent object.UUID of the created agent
Agent name
Base system prompt
Optional description
UUID of default model
Array of capability references
Agent status:
active or archivedISO 8601 timestamp of creation
ISO 8601 timestamp of last update
Example Request
Example Response
Input Validation
Error Responses
400 Bad Request- Invalid input or size limits exceeded422 Unprocessable Entity- Validation error (invalid capability reference)500 Internal Server Error- Server error