IFTTT website screenshot

IFTTT

IFTTT (If This Then That) is a consumer and prosumer automation platform that connects more than 750 apps, devices, and services through conditional Applets that chain triggers to actions. The IFTTT Maker Webhooks service exposes a public HTTP API that lets developers fire triggers and execute Applets from any internet-connected device using a personal Webhooks key for authentication, with both form-encoded and JSON payload variants supported.

1 APIs 0 Features
AutomationWebhooksiPaaSNo-CodeSmart HomeIoT

APIs

IFTTT Maker Webhooks API

Public HTTP API for triggering IFTTT Applets from any device or service by sending GET or POST requests to a per-user trigger URL. Supports up to three positional values per cal...

Collections

Resources

👥
GitHubOrganization
GitHubOrganization
🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
💰
Pricing
Pricing
📝
Signup
Signup
🔗
Developer Platform
Developer Platform

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: IFTTT Webhooks (Maker) API
  version: '1.0'
items:
- info:
    name: Trigger an event
    type: http
  http:
    method: GET
    url: https://maker.ifttt.com/trigger/:event/with/key/:key
    params:
    - name: event
      value: ''
      type: path
      description: Event name configured in the Webhooks service.
    - name: key
      value: ''
      type: path
      description: Maker key from the Webhooks service settings.
  docs: Trigger an event
- info:
    name: Trigger an event with optional value payload
    type: http
  http:
    method: POST
    url: https://maker.ifttt.com/trigger/:event/with/key/:key
    params:
    - name: event
      value: ''
      type: path
      description: Event name configured in the Webhooks service.
    - name: key
      value: ''
      type: path
      description: Maker key from the Webhooks service settings.
    body:
      type: json
      data: '{}'
  docs: Trigger an event with optional value payload
- info:
    name: Trigger an event with a JSON payload
    type: http
  http:
    method: POST
    url: https://maker.ifttt.com/trigger/:event/json/with/key/:key
    params:
    - name: event
      value: ''
      type: path
    - name: key
      value: ''
      type: path
    body:
      type: json
      data: '{}'
  docs: Trigger an event with a JSON payload
bundled: true