Flightcontrol Deploy Hooks API

The Deploy Hooks API from Flightcontrol — 2 operation(s) for deploy hooks.

Operations 2

GET /api/deploy-hook/{envId}/{secret} Trigger deployment (deploy hook) #
GET /api/deploy-hook/{previewEnvId}/{secret}/{prNumber}/{commitSHA} Trigger preview deployment (deploy hook) #

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/flightcontrol-deploy-hooks-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

flightcontrol-deploy-hooks-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Flightcontrol Management CloudFront Deploy Hooks API
  description: Specification of the documented Flightcontrol HTTP API. Flightcontrol deploys applications to your own AWS account. This API lets you integrate Flightcontrol with CI/CD and automation - trigger deployments via deploy hooks, read deployment status, create and edit environments, list services, set environment variables, update service scaling, run scheduler jobs, and invalidate CloudFront caches.
  termsOfService: https://www.flightcontrol.dev/legal/terms
  contact:
    name: Flightcontrol Support
    url: https://www.flightcontrol.dev/docs
  version: '1.0'
servers:
- url: https://api.flightcontrol.dev
  description: Authenticated management API (Bearer API key).
- url: https://app.flightcontrol.dev
  description: Deploy hook endpoints (secret embedded in path).
security:
- bearerAuth: []
tags:
- name: Deploy Hooks
paths:
  /api/deploy-hook/{envId}/{secret}:
    get:
      operationId: triggerDeployHook
      tags:
      - Deploy Hooks
      summary: Trigger deployment (deploy hook)
      description: Trigger a deployment for a normal environment. Authentication is provided by the secret embedded in the path; no Authorization header is used. Returns the new deploymentId.
      security: []
      servers:
      - url: https://app.flightcontrol.dev
      parameters:
      - name: envId
        in: path
        required: true
        schema:
          type: integer
      - name: secret
        in: path
        required: true
        schema:
          type: string
      - name: commit
        in: query
        description: Specific git commit SHA to deploy.
        schema:
          type: string
      - name: branch
        in: query
        description: Repository branch (required if commit is specified).
        schema:
          type: string
      - name: force
        in: query
        description: Deploy all services, ignoring watchPaths.
        schema:
          type: boolean
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeployHookResponse'
  /api/deploy-hook/{previewEnvId}/{secret}/{prNumber}/{commitSHA}:
    get:
      operationId: triggerPreviewDeployHook
      tags:
      - Deploy Hooks
      summary: Trigger preview deployment (deploy hook)
      description: Trigger a deployment for a preview environment. Authentication is provided by the secret embedded in the path. Returns the new deploymentId.
      security: []
      servers:
      - url: https://app.flightcontrol.dev
      parameters:
      - name: previewEnvId
        in: path
        required: true
        schema:
          type: integer
      - name: secret
        in: path
        required: true
        schema:
          type: string
      - name: prNumber
        in: path
        required: true
        schema:
          type: integer
      - name: commitSHA
        in: path
        required: true
        schema:
          type: string
      - name: force
        in: query
        schema:
          type: boolean
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeployHookResponse'
components:
  schemas:
    DeployHookResponse:
      type: object
      properties:
        success:
          type: string
          example: 'true'
        deploymentId:
          type: string
          example: clcpcxekt000lc9ojqtgtc26y
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Flightcontrol API key passed as a Bearer token in the Authorization header.