Aloft Alerts API

Alerts

Operations 5

GET /v1/account/{account_id}/alerts Get alerts #
POST /v1/account/{account_id}/alerts Create an alert #
GET /v1/account/{account_id}/alerts/{alert_id} Get an alert #
PUT /v1/account/{account_id}/alerts/{alert_id} Update an alert #
DELETE /v1/account/{account_id}/alerts/{alert_id} Delete an alert #

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/aloft-alerts-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

aloft-alerts-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Aloft API V1 Accounts Alerts API
  contact:
    email: support@aloft.ai
  version: 1.0.0
  description: Accounts
servers:
- url: https://api.aloft.ai
  description: Base URL reconciled from apis.yml
tags:
- name: Alerts
  description: Alerts
paths:
  /v1/account/{account_id}/alerts:
    get:
      tags:
      - Alerts
      summary: Get alerts
      description: Get alerts
      operationId: 643def1d9af298df867a3c584be47545
      parameters:
      - name: account_id
        in: path
        schema:
          $ref: '#components/schemas/model_id'
      - name: page
        in: query
        schema:
          type: integer
      - name: page_length
        in: query
        schema:
          type: integer
      - name: type[]
        in: query
        description: A list of alert types
        schema:
          type: array
          items:
            type: string
            enum:
            - pilot_certification
            - mission_status_change
      - name: appends[]
        in: query
        description: array of model names
        schema:
          type: array
          items:
            type: string
            enum:
            - alertRecipients
            - alertRecipients.detail
            - user
            - user.is_retired
      - name: order_by
        in: query
        description: The field to order the data by
        schema:
          type: string
          enum:
          - id
          - type
          - schedule
          - created_at
      - name: order
        in: query
        schema:
          $ref: '#components/schemas/order_direction'
      responses:
        '403':
          description: Access Denied
        '401':
          description: Unauthorized
        '200':
          description: Successful operation
    post:
      tags:
      - Alerts
      summary: Create an alert
      description: Create an alert
      operationId: 285a110b24077b86ed65f02ca77662ba
      parameters:
      - name: account_id
        in: path
        required: true
        schema:
          $ref: '#components/schemas/model_id'
      - name: appends[]
        in: query
        description: array of model names
        schema:
          type: array
          items:
            type: string
            enum:
            - alertRecipients
            - alertRecipients.detail
            - user
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#components/schemas/alert'
      responses:
        '403':
          description: Access Denied
        '401':
          description: Unathorized
        '201':
          description: Successful operation
  /v1/account/{account_id}/alerts/{alert_id}:
    get:
      tags:
      - Alerts
      summary: Get an alert
      description: Get an alert
      operationId: eb8fc2b00bf1caded9a3845f08f04066
      parameters:
      - name: account_id
        in: path
        required: true
        schema:
          $ref: '#components/schemas/model_id'
      - name: alert_id
        in: path
        description: Alert Id
        required: true
        schema:
          type: integer
      - name: appends[]
        in: query
        description: array of model names
        schema:
          type: array
          items:
            type: string
            enum:
            - alertRecipients
            - alertRecipients.detail
            - user
            - user.is_retired
      responses:
        '403':
          description: Access Denied
        '401':
          description: Unauthorized
        '200':
          description: Successful operation
    put:
      tags:
      - Alerts
      summary: Update an alert
      description: Update an alert
      operationId: 147d8cc665057c3905ab6744e2fbdafa
      parameters:
      - name: account_id
        in: path
        required: true
        schema:
          $ref: '#components/schemas/model_id'
      - name: alert_id
        in: path
        description: Alert Id
        required: true
        schema:
          type: integer
      - name: appends[]
        in: query
        description: array of model names
        schema:
          type: array
          items:
            type: string
            enum:
            - alertRecipients
            - alertRecipients.detail
            - user
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#components/schemas/alert'
      responses:
        '403':
          description: Access Denied
        '401':
          description: Unauthorized
        '200':
          description: Successful operation
    delete:
      tags:
      - Alerts
      summary: Delete an alert
      description: Delete an alert
      operationId: da26caafbfe69aa01454c14dcedcc434
      parameters:
      - name: account_id
        in: path
        required: true
        schema:
          $ref: '#components/schemas/model_id'
      - name: alert_id
        in: path
        description: Alert Id.
        required: true
        schema:
          type: integer
      responses:
        '403':
          description: Access Denied
        '401':
          description: Unauthorized
        '204':
          description: Successful operation
components:
  securitySchemes:
    Aloft_Token:
      type: http
      name: Aloft Token
      in: header
      scheme: bearer