> For the complete documentation index, see [llms.txt](https://docs.plugin.global/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.plugin.global/job-tasks-plugin-1.0-deprecated/cron.md).

# CRON

```
{
    "initiators": [
        { 
            "type": "cron",
            "params": { "schedule": "CRON_TZ=UTC * */20 * * * *" }
        }
    ],
    "tasks": [
        {
            "type": "HttpGet",
            "params": { "get": "https://example.com/api" }
        },
        {
            "type": "JsonParse",
            "params": { "path": [ "data", "price" ] }
        },
        {
            "type": "Multiply",
            "params": { "times": 100 }
        },
        {
            "type": "EthUint256"
        },
        {
            "type": "EthTx"
        }
    ]
}

```
