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 a specific harness by its UUID.

Path Parameters

id
string
required
UUID of the harness to retrieve

Response

Returns the harness object with all configuration details.

Example Request

curl http://localhost:9300/v1/harnesses/01933b5a-0000-7000-8000-000000000001

Example Response

{
  "id": "01933b5a-0000-7000-8000-000000000001",
  "name": "Base Harness",
  "type": "base",
  "description": "Default base harness",
  "capabilities": [
    "session_file_system",
    "virtual_bash"
  ],
  "created_at": "2024-01-15T10:30:00Z",
  "updated_at": "2024-01-15T10:30:00Z"
}
See the Harnesses concept guide for more information about harness types and configuration.