#Welcome to Tasker

Tasker is webhook based, scalable and easy to use job scheduler for the serverless age. It enables you to schedule jobs without having to worry about server states, cron processes or scalability issues. And the best of all? It only takes a few minutes to get up and running .

For more information visit api-tasker.io.

To create an account and get started go to app.api-tasker.io.


#Quickstart

#1. Get an api key

Go to app.api-tasker.io and login or signup. Once done head to the Api Keys page and create a key. Store it in a safe place.

#2. Set up an endpoint for your task to call

Create an publicly accessable http endpoint with a framework of your choice. For this guide it should accept a GET request and return a 200 status code when successful.

#3. Register a task

Now register your first task from your backend using any http client and your api key. To learn more about the Create Task endpoint click here.

import axios from "axios";

axios.post("https://rest.api-tasker.io/v1/tasks/create", {
        executionTime: 1636214700000, //Some point in the future as a unix timestamp.
        task: {
            url: "{{your endpoint}}",
            method: "GET",
        },
    },
    {
        headers: {
            apiKey: "{{your api key}}"
        }
    }
)

And thats it! Now wait for the the specified time to come and watch your endpoint get called.


#Features

#🎉 It just works

Tasker has been built to be easy to use and saves you hours of development and configuration so you can focus on your product.

#🚀 Fire and forget

You dont have to worry about monitoring server states or dead jobs. Just register a task and forget about it, we will make sure it executes.

#💪 Scalable

It dosent matter if you need to schedule 1.000 or 1.000.000 jobs, Tasker will handle it.

# Predictable pricing

By choosing Tasker you will exactly know how much scheduling costs you each month.

#🔭 Many more features ahead

We are just getting started with Tasker so there are still many more amazing features on the horizon. For more information visit our roadmap.

#Support

Do you have technical support question or want to talk to sales? Did find a defect or would like to submit a feature request? Do you have a general inquiry? Please feel free to contact us at info@thecodecave or via the live chat. We will answer within 24 hours and do our best to assist.