Integrations
    1 min read· Reviewed Sep 15, 2026

    Automate LemTask With Zapier, Make or n8n via the API

    LemTask does not have official Zapier or Make apps, but its public REST API lets you build any integration in either platform using the generic *Webhooks* or *HTTP Request* modules. Generate an API key in Settings, then POST to /tasks to create, PATCH to update, and subscribe to outgoing webhooks for triggers.

    Step 1 — Get your API key

    Settings → Integrations → API AccessGenerate key. Copy and store it — it's shown once.

    Step 2 — In Zapier / Make / n8n

    Use the Webhooks by Zapier (or HTTP Request in Make/n8n) module.

    Create a task

    ```

    POST https://api.lemtask.com/v1/tasks

    Authorization: Bearer YOUR_API_KEY

    Content-Type: application/json

    { "title": "Follow up with {{lead_name}}", "priority": 2, "due": "tomorrow 10am" }

    ```

    Trigger from LemTask events

    Settings → Integrations → Outgoing Webhooks → add a URL. Choose events: *task.created*, *task.completed*, *habit.streak_broken*, etc.

    Popular recipes

    Rate limits: 60 requests/min per key. If you hit them, batch or throttle in your automation.

    Was this helpful?

    Related