Altimate AI PRESET API

The PRESET API from Altimate AI — 2 operation(s) for preset.

Operations 5

GET /preset/ Get Presets #
POST /preset/ Create Preset #
GET /preset/{preset_id} Get Preset #
PATCH /preset/{preset_id} Update Preset #
DELETE /preset/{preset_id} Delete Preset #

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-preset-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-preset-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Fast ACCOUNT_COSTS PRESET API
  version: 0.1.0
servers:
- url: https://api.myaltimate.com
  description: Base URL reconciled from apis.yml
tags:
- name: PRESET
paths:
  /preset/:
    get:
      tags:
      - PRESET
      summary: Get Presets
      operationId: get_presets_preset__get
      security:
      - HTTPBearer: []
      - HTTPBearer: []
      parameters:
      - name: type
        in: query
        required: false
        schema:
          type: string
          title: Type
      - name: applicable_for
        in: query
        required: false
        schema:
          type: string
          title: Applicable For
      - name: x-tenant
        in: header
        required: true
        schema:
          type: string
          title: X-Tenant
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetAllPresetResponse'
        '400':
          description: Not supported for public user
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response 400 Get Presets Preset  Get
        '403':
          description: Not supported for public user
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response 403 Get Presets Preset  Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    post:
      tags:
      - PRESET
      summary: Create Preset
      operationId: create_preset_preset__post
      security:
      - HTTPBearer: []
      - HTTPBearer: []
      parameters:
      - name: x-tenant
        in: header
        required: true
        schema:
          type: string
          title: X-Tenant
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreatePresetRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreatePresetResponse'
        '400':
          description: Not supported for public user
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response 400 Create Preset Preset  Post
        '403':
          description: Not supported for public user
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response 403 Create Preset Preset  Post
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /preset/{preset_id}:
    get:
      tags:
      - PRESET
      summary: Get Preset
      operationId: get_preset_preset__preset_id__get
      deprecated: true
      security:
      - HTTPBearer: []
      - HTTPBearer: []
      parameters:
      - name: preset_id
        in: path
        required: true
        schema:
          type: integer
          title: Preset Id
      - name: x-tenant
        in: header
        required: true
        schema:
          type: string
          title: X-Tenant
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetPresetResponse'
        '400':
          description: Not supported for public user
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response 400 Get Preset Preset  Preset Id  Get
        '403':
          description: Not supported for public user
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response 403 Get Preset Preset  Preset Id  Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    patch:
      tags:
      - PRESET
      summary: Update Preset
      operationId: update_preset_preset__preset_id__patch
      security:
      - HTTPBearer: []
      - HTTPBearer: []
      parameters:
      - name: preset_id
        in: path
        required: true
        schema:
          type: integer
          title: Preset Id
      - name: x-tenant
        in: header
        required: true
        schema:
          type: string
          title: X-Tenant
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdatePresetRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UpdatePresetResponse'
        '400':
          description: Not supported for public user
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response 400 Update Preset Preset  Preset Id  Patch
        '403':
          description: Not supported for public user
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response 403 Update Preset Preset  Preset Id  Patch
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    delete:
      tags:
      - PRESET
      summary: Delete Preset
      operationId: delete_preset_preset__preset_id__delete
      security:
      - HTTPBearer: []
      - HTTPBearer: []
      parameters:
      - name: preset_id
        in: path
        required: true
        schema:
          type: integer
          title: Preset Id
      - name: x-tenant
        in: header
        required: true
        schema:
          type: string
          title: X-Tenant
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeletePresetResponse'
        '400':
          description: Not supported for public user
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response 400 Delete Preset Preset  Preset Id  Delete
        '403':
          description: Not supported for public user
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response 403 Delete Preset Preset  Preset Id  Delete
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    Preset:
      type: string
      enum:
      - filter
      - column_picker
      - optin_features
      title: Preset
    CreatePresetRequest:
      properties:
        name:
          type: string
          title: Name
        data:
          additionalProperties: true
          type: object
          title: Data
        applicable_for:
          type: string
          title: Applicable For
        type:
          $ref: '#/components/schemas/Preset'
      type: object
      required:
      - name
      - data
      - applicable_for
      - type
      title: CreatePresetRequest
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    DeletePresetResponse:
      properties:
        preset_id:
          type: integer
          title: Preset Id
      type: object
      required:
      - preset_id
      title: DeletePresetResponse
    GetAllPresetResponse:
      properties:
        presets:
          items:
            $ref: '#/components/schemas/PresetModel'
          type: array
          title: Presets
      type: object
      required:
      - presets
      title: GetAllPresetResponse
    PresetModel:
      properties:
        name:
          type: string
          title: Name
        data:
          additionalProperties: true
          type: object
          title: Data
        applicable_for:
          type: string
          title: Applicable For
        type:
          $ref: '#/components/schemas/Preset'
        id:
          anyOf:
          - type: integer
          - type: 'null'
          title: Id
      type: object
      required:
      - name
      - data
      - applicable_for
      - type
      title: PresetModel
    UpdatePresetResponse:
      properties:
        preset_id:
          type: integer
          title: Preset Id
      type: object
      required:
      - preset_id
      title: UpdatePresetResponse
    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
    GetPresetResponse:
      properties:
        preset:
          $ref: '#/components/schemas/PresetModel'
      type: object
      required:
      - preset
      title: GetPresetResponse
    UpdatePresetRequest:
      properties:
        name:
          anyOf:
          - type: string
          - type: 'null'
          title: Name
        data:
          anyOf:
          - additionalProperties: true
            type: object
          - type: 'null'
          title: Data
        applicable_for:
          anyOf:
          - type: string
          - type: 'null'
          title: Applicable For
        type:
          anyOf:
          - $ref: '#/components/schemas/Preset'
          - type: 'null'
      type: object
      title: UpdatePresetRequest
    CreatePresetResponse:
      properties:
        preset_id:
          type: integer
          title: Preset Id
      type: object
      required:
      - preset_id
      title: CreatePresetResponse
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer