Skip to main content

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.

GET /v1/harnesses

Retrieve all harnesses in the organization.

Response

Returns a wrapper object with the harness array.
data
array
Array of harness objects
total
integer
Total count of harnesses

Example Request

curl http://localhost:9300/v1/harnesses

Example Response

{
  "data": [
    {
      "id": "01933b5a-0000-7000-8000-000000000001",
      "name": "Base Harness",
      "type": "base",
      "description": "Default base harness",
      "capabilities": [],
      "created_at": "2024-01-15T10:30:00Z"
    }
  ],
  "total": 1
}