List Schedulers

Returns a list of all schedulers.

Authentication

This endpoint is public. No authentication required.

Query Parameters

Parameter Type Description
search string Filter schedulers by display name (partial match)
q string General search query

Example Request

1curl "https://api.hola.cloud/schedulers?search=my"

Example Response

1HTTP/1.1 200 OK
2Content-Type: application/json
 1{
 2  "schedulers": [
 3    {
 4      "id": "sched-a1b2c3d4-e5f6-7890-abcd-ef1234567890",
 5      "display_name": "my-scheduler",
 6      "ready": true,
 7      "scheduled": 5,
 8      "inflight": 0,
 9      "created_at": "2025-06-20T10:00:00Z",
10      "updated_at": "2025-06-21T08:30:00Z"
11    }
12  ],
13  "total": 1
14}

Error Codes

Status Code Description
500 internal_error Internal server error

Comments

Leave a comment