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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/aloft-connections-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
openapi: 3.2.0
info:
title: Aloft API V1 Accounts Connections 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: Connections
description: Connections
paths:
/v1/account/{account_id}/connections:
get:
tags:
- Connections
summary: Get all connections
description: Get all connections
operationId: 634cf86c723e6464b4fa0e17e4ef1c4b
parameters:
- name: account_id
in: path
required: true
schema:
$ref: '#components/schemas/model_id'
- name: search
in: query
description: Search for user.
required: false
schema:
type: string
- name: status
in: query
description: Filter results by status.
required: false
schema:
type: string
enum:
- enabled
- disabled
- error
- name: type
in: query
description: Filter results by connection handler.
required: false
schema:
type: string
enum:
- dji
- airmesh
- skydio
- autel
- dronelink
- airmesh-skydio
responses:
'403':
description: Access Denied
'401':
description: Unauthorized
'200':
description: Successful operation
security:
- Aloft Token: []
post:
tags:
- Connections
summary: Create a new connection
description: Create a new connection
operationId: 349c9e06cd00e8acc9c55bffa4c4b37c
parameters:
- name: account_id
in: path
required: true
schema:
$ref: '#components/schemas/model_id'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#components/schemas/ConnectionStoreRequest'
responses:
'422':
description: Unprocessable Content
'403':
description: Access Denied
'401':
description: Unauthorized
'201':
description: Successful operation
security:
- Aloft Token: []
/v1/account/{account_id}/connections/{connection_id}:
get:
tags:
- Connections
summary: Get a connection
description: Get a connection
operationId: 79b1ca84389bdcd713d005b592f20e1e
parameters:
- name: account_id
in: path
required: true
schema:
$ref: '#components/schemas/model_id'
- name: connection_id
in: path
required: true
schema:
type: integer
responses:
'403':
description: Access Denied
'401':
description: Unauthorized
'200':
description: Successful operation
security:
- Aloft Token: []
put:
tags:
- Connections
summary: Update a connection
description: Update a connection
operationId: 1092c05f67573fb3793c6f058ba5fc22
parameters:
- name: account_id
in: path
required: true
schema:
$ref: '#components/schemas/model_id'
- name: connection_id
in: path
required: true
schema:
type: integer
requestBody:
required: true
content:
application/json:
schema:
$ref: '#components/schemas/ConnectionStoreRequest'
responses:
'422':
description: Unprocessable Content
'403':
description: Access Denied
'401':
description: Unauthorized
'200':
description: Successful operation
security:
- Aloft Token: []
delete:
tags:
- Connections
summary: Delete a connection
description: Delete a connection
operationId: 004ce724ad2d00b55ab280a705bbbef2
parameters:
- name: account_id
in: path
required: true
schema:
$ref: '#components/schemas/model_id'
- name: connection_id
in: path
required: true
schema:
type: integer
responses:
'403':
description: Access Denied
'401':
description: Unauthorized
'204':
description: Successful operation
security:
- Aloft Token: []
components:
securitySchemes:
Aloft_Token:
type: http
name: Aloft Token
in: header
scheme: bearer