Altimate AI connections API

The connections API from Altimate AI — 3 operation(s) for connections.

Operations 5

GET /connections/ List Connections #
POST /connections/ Create New Connection #
PATCH /connections/{connection_id} Update Existing Connection #
DELETE /connections/{connection_id} Remove Connection #
POST /connections/test Test Connection Endpoint #

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/altimate-ai-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

altimate-ai-connections-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Fast ACCOUNT_COSTS Connections API
  version: 0.1.0
servers:
- url: https://api.myaltimate.com
  description: Base URL reconciled from apis.yml
tags:
- name: connections
paths:
  /connections/:
    get:
      tags:
      - connections
      summary: List Connections
      description: List all connections for current user
      operationId: list_connections_connections__get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConnectionListResponse'
      security:
      - HTTPBearer: []
      - HTTPBearer: []
    post:
      tags:
      - connections
      summary: Create New Connection
      description: Create a new connection with validation
      operationId: create_new_connection_connections__post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ConnectionCreate'
        required: true
      responses:
        '201':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConnectionInDB'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - HTTPBearer: []
      - HTTPBearer: []
  /connections/{connection_id}:
    patch:
      tags:
      - connections
      summary: Update Existing Connection
      description: Update a connection with optional revalidation
      operationId: update_existing_connection_connections__connection_id__patch
      security:
      - HTTPBearer: []
      - HTTPBearer: []
      parameters:
      - name: connection_id
        in: path
        required: true
        schema:
          type: integer
          title: Connection Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ConnectionUpdate'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConnectionInDB'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    delete:
      tags:
      - connections
      summary: Remove Connection
      description: Delete a connection (soft delete)
      operationId: remove_connection_connections__connection_id__delete
      security:
      - HTTPBearer: []
      - HTTPBearer: []
      parameters:
      - name: connection_id
        in: path
        required: true
        schema:
          type: integer
          title: Connection Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StandardResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /connections/test:
    post:
      tags:
      - connections
      summary: Test Connection Endpoint
      description: Test connection details using external connection validation service
      operationId: test_connection_endpoint_connections_test_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ConnectionTest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConnectionTestResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      deprecated: true
      security:
      - HTTPBearer: []
      - HTTPBearer: []
components:
  schemas:
    ConnectionInDB:
      properties:
        name:
          type: string
          title: Name
        integration_id:
          type: string
          title: Integration Id
        config:
          additionalProperties: true
          type: object
          title: Config
        id:
          type: integer
          title: Id
        user_id:
          type: integer
          title: User Id
        is_valid:
          type: boolean
          title: Is Valid
        last_validated_at:
          anyOf:
          - type: string
            format: date-time
          - type: 'null'
          title: Last Validated At
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          anyOf:
          - type: string
            format: date-time
          - type: 'null'
          title: Updated At
      type: object
      required:
      - name
      - integration_id
      - config
      - id
      - user_id
      - is_valid
      - created_at
      title: ConnectionInDB
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    StandardResponse:
      properties:
        ok:
          type: boolean
          title: Ok
      type: object
      required:
      - ok
      title: StandardResponse
    ConnectionListResponse:
      properties:
        connections:
          items:
            $ref: '#/components/schemas/ConnectionInDB'
          type: array
          title: Connections
      type: object
      required:
      - connections
      title: ConnectionListResponse
    ConnectionCreate:
      properties:
        name:
          type: string
          title: Name
        integration_id:
          type: string
          title: Integration Id
        config:
          additionalProperties: true
          type: object
          title: Config
      type: object
      required:
      - name
      - integration_id
      - config
      title: ConnectionCreate
    ConnectionTestResponse:
      properties:
        success:
          type: boolean
          title: Success
        message:
          anyOf:
          - type: string
          - type: 'null'
          title: Message
      type: object
      required:
      - success
      title: ConnectionTestResponse
    ConnectionUpdate:
      properties:
        name:
          anyOf:
          - type: string
          - type: 'null'
          title: Name
        integration_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Integration Id
        config:
          anyOf:
          - additionalProperties: true
            type: object
          - type: 'null'
          title: Config
      type: object
      title: ConnectionUpdate
    ConnectionTest:
      properties:
        name:
          anyOf:
          - type: string
          - type: 'null'
          title: Name
        integration_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Integration Id
        config:
          anyOf:
          - additionalProperties: true
            type: object
          - type: 'null'
          title: Config
      type: object
      title: ConnectionTest
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer