Aloft Tag Groups API

Tag Groups

Operations 6

GET /v1/account/{account_id}/tag-groups Get tag groups #
POST /v1/account/{account_id}/tag-groups Create a tag group #
GET /v1/account/{account_id}/tag-groups/{tag_group_id} Get a tag group #
PUT /v1/account/{account_id}/tag-groups/{tag_group_id} Update a tag group #
DELETE /v1/account/{account_id}/tag-groups/{tag_group_id} Delete a tag group #
GET /v1/tag-groups/available-models Get a list of allowed models to attach a tag to #

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-tag-groups-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-tag-groups-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Aloft API V1 Accounts Tag Groups 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: Tag Groups
  description: Tag Groups
paths:
  /v1/account/{account_id}/tag-groups:
    get:
      tags:
      - Tag Groups
      summary: Get tag groups
      description: Get tag groups
      operationId: b48dfdcb84fccd997cf9d2cd41582892
      parameters:
      - name: account_id
        in: path
        required: true
        schema:
          $ref: '#components/schemas/model_id'
      - name: page
        in: query
        schema:
          type: integer
      - name: order_by
        in: query
        description: The field to order the data by
        schema:
          type: string
          enum:
          - id
          - name
      - name: order
        in: query
        schema:
          $ref: '#components/schemas/order_direction'
      - name: page_length
        in: query
        schema:
          type: integer
      - name: appends[]
        in: query
        description: Array of appendable resource names
        schema:
          type: array
          items:
            type: string
            enum:
            - tags
      - name: applies_to[]
        in: query
        description: array of models you want to filter tag by
        schema:
          $ref: '#components/schemas/allowed_model_list'
      - name: exclude_autotags
        in: query
        description: Exclude tag groups that have automatic tags (autotags).
        required: false
        schema:
          description: Set to 'true' to exclude tag groups with autotags. Set to 'false' to include only tag groups with autotags.
          type: string
          enum:
          - 'true'
          - 'false'
          - aircrafts
          - flights
          - missions
          - users
      responses:
        '403':
          description: Access Denied
        '401':
          description: Unauthorized
        '200':
          description: Successful operation
          content:
            application/json: {}
            application/csv: {}
      security:
      - Aloft Token: []
    post:
      tags:
      - Tag Groups
      summary: Create a tag group
      description: Create a tag group
      operationId: 6645211fea72e92ecbf3bbd6bf84dc82
      parameters:
      - name: account_id
        in: path
        required: true
        schema:
          $ref: '#components/schemas/model_id'
      - name: appends[]
        in: query
        description: Array of appendable resource names
        schema:
          type: array
          items:
            type: string
            enum:
            - tags
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#components/schemas/tag_group'
      responses:
        '403':
          description: Access Denied
        '401':
          description: Unauthorized
        '422':
          description: Unprocessable Content
        '201':
          description: Successful operation
      security:
      - Aloft Token: []
  /v1/account/{account_id}/tag-groups/{tag_group_id}:
    get:
      tags:
      - Tag Groups
      summary: Get a tag group
      description: Get a tag group
      operationId: a50cfdab488e7bda21fde6e1202b552f
      parameters:
      - name: account_id
        in: path
        required: true
        schema:
          $ref: '#components/schemas/model_id'
      - name: tag_group_id
        in: path
        required: true
        schema:
          type: integer
      - name: appends[]
        in: query
        description: Array of appendable resource names
        schema:
          type: array
          items:
            type: string
            enum:
            - tags
      responses:
        '403':
          description: Access Denied
        '401':
          description: Unauthorized
        '200':
          description: Successful operation
      security:
      - Aloft Token: []
    put:
      tags:
      - Tag Groups
      summary: Update a tag group
      description: Update a tag group
      operationId: 9655d138c94698a19bde4ec2e908455a
      parameters:
      - name: account_id
        in: path
        required: true
        schema:
          $ref: '#components/schemas/account_id'
      - name: tag_group_id
        in: path
        description: The id of the tag group.
        required: true
        schema:
          type: integer
      - name: appends[]
        in: query
        description: Array of appendable resource names
        schema:
          type: array
          items:
            type: string
            enum:
            - tags
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#components/schemas/tag_group'
      responses:
        '403':
          description: Access Denied
        '401':
          description: Unauthorized
        '200':
          description: Successful operation
      security:
      - Aloft Token: []
    delete:
      tags:
      - Tag Groups
      summary: Delete a tag group
      description: This will completely remove the tag group and any associations with the tag group. It will not delete the associated objects.
      operationId: c18bae793aa472939cff4dee6fc0f0e8
      parameters:
      - name: account_id
        in: path
        required: true
        schema:
          $ref: '#components/schemas/model_id'
      - name: tag_group_id
        in: path
        description: The id of the tag group.
        required: true
        schema:
          type: integer
      responses:
        '403':
          description: Access Denied
        '401':
          description: Unauthorized
        '404':
          description: Not Found
        '204':
          description: Successful operation
      security:
      - Aloft Token: []
  /v1/tag-groups/available-models:
    get:
      tags:
      - Tag Groups
      summary: Get a list of allowed models to attach a tag to
      description: Get a list of allowed models to attach a tag to.
      operationId: 46576643094f500b985d7679470fddae
      responses:
        '401':
          description: Unauthorized
        '200':
          description: Successful operation
      security:
      - Aloft Token: []
components:
  securitySchemes:
    Aloft_Token:
      type: http
      name: Aloft Token
      in: header
      scheme: bearer