Skip to content

List schedules

GET
/api/v1/schedules
curl --request GET \
--url https://dashboard.justcrawl.io/api/v1/schedules \
--header 'Authorization: Bearer <token>'
page
integer
pageSize
integer
frequency
string
isEnabled
boolean

Paginated list of schedules

Media type application/json
object
items
Array<object>
object
id
string format: uuid
name
string
workflowId
string format: uuid
nullable
tagFilters
Array<string>
frequency
string
Allowed values: hourly daily weekly monthly custom
cronExpr
string
timezone
string
isEnabled
boolean
nextRunAt
string format: date-time
lastRunAt
string format: date-time
nullable
createdAt
string format: date-time
total
integer
Example
{
"items": [
{
"frequency": "hourly"
}
]
}