IFTTT Trigger API

The Trigger API from IFTTT — 2 operation(s) for trigger.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/ifttt-trigger-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

ifttt-trigger-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: IFTTT Webhooks (Maker) Trigger API
  description: 'The IFTTT Webhooks service lets you trigger Applets by sending a request

    to a per-event URL with your Maker key.

    '
  version: '1.0'
  contact:
    name: IFTTT Help
    url: https://help.ifttt.com/hc/en-us/articles/115010230347
servers:
- url: https://maker.ifttt.com
  description: Webhooks endpoint
tags:
- name: Trigger
paths:
  /trigger/{event}/with/key/{key}:
    parameters:
    - name: event
      in: path
      required: true
      schema:
        type: string
      description: Event name configured in the Webhooks service.
    - name: key
      in: path
      required: true
      schema:
        type: string
      description: Maker key from the Webhooks service settings.
    get:
      summary: Trigger an event
      operationId: triggerEvent
      responses:
        '200':
          description: Event accepted
      tags:
      - Trigger
    post:
      summary: Trigger an event with optional value payload
      operationId: triggerEventWithValues
      requestBody:
        required: false
        content:
          application/json:
            schema:
              type: object
              properties:
                value1:
                  type: string
                value2:
                  type: string
                value3:
                  type: string
      responses:
        '200':
          description: Event accepted
      tags:
      - Trigger
  /trigger/{event}/json/with/key/{key}:
    parameters:
    - name: event
      in: path
      required: true
      schema:
        type: string
    - name: key
      in: path
      required: true
      schema:
        type: string
    post:
      summary: Trigger an event with a JSON payload
      operationId: triggerEventWithJson
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              additionalProperties: true
      responses:
        '200':
          description: Event accepted
      tags:
      - Trigger