Runtime Realms
GET/api/runtime_realms
curl -s -X GET "https://alphieui.com/api/runtime_realms" \
-H "Authorization: Bearer $TOKEN"
POST/api/runtime_realms
curl -s -X POST "https://alphieui.com/api/runtime_realms" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{}'
POST/api/runtime_realms/redistribute
curl -s -X POST "https://alphieui.com/api/runtime_realms/redistribute" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{}'
GET/api/runtime_realms/redistribute_results
curl -s -X GET "https://alphieui.com/api/runtime_realms/redistribute_results" \
-H "Authorization: Bearer $TOKEN"
DELETE/api/runtime_realms/{id:int}
curl -s -X DELETE "https://alphieui.com/api/runtime_realms/{id:int}" \
-H "Authorization: Bearer $TOKEN"
GET/api/runtime_realms/{id:int}
curl -s -X GET "https://alphieui.com/api/runtime_realms/{id:int}" \
-H "Authorization: Bearer $TOKEN"
PUT/api/runtime_realms/{id:int}
curl -s -X PUT "https://alphieui.com/api/runtime_realms/{id:int}" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{}'
GET/api/runtime_realms/{id:int}/build_status
curl -s -X GET "https://alphieui.com/api/runtime_realms/{id:int}/build_status" \
-H "Authorization: Bearer $TOKEN"
GET/api/lookups/runtime_realms
curl -s -X GET "https://alphieui.com/api/lookups/runtime_realms" \
-H "Authorization: Bearer $TOKEN"
Notes
- All endpoints require authentication unless noted otherwise.
- Most write operations accept and return JSON.
- Timestamps are returned in server-local time strings for UI convenience.
- Long-running operations (runs/pipelines) expose
/file-logand/file-log/tailfor streaming logs.