Smartcat FileDisassemblingAlgorithmPresets API

The FileDisassemblingAlgorithmPresets API from Smartcat — 2 operation(s) for filedisassemblingalgorithmpresets.

Operations 5

GET /api/integration/v1/fileDisassemblingAlgorithmPresets/{id} Fetch a disassembly algorithm preset
PUT /api/integration/v1/fileDisassemblingAlgorithmPresets/{id} Update a disassembly algorithm preset
DELETE /api/integration/v1/fileDisassemblingAlgorithmPresets/{id} Delete a preset
GET /api/integration/v1/fileDisassemblingAlgorithmPresets Fetch all presets for the account
POST /api/integration/v1/fileDisassemblingAlgorithmPresets Create a disassembly algorithm 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/smartcat-filedisassemblingalgorithmpresets-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

smartcat-filedisassemblingalgorithmpresets-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Smartcat Account File Disassembling Algorithm Presets API
  version: v1
servers:
- url: /
tags:
- name: FileDisassemblingAlgorithmPresets
paths:
  /api/integration/v1/fileDisassemblingAlgorithmPresets/{id}:
    get:
      tags:
      - FileDisassemblingAlgorithmPresets
      summary: Fetch a disassembly algorithm preset
      parameters:
      - name: id
        in: path
        description: Preset ID
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Request has been successfully completed
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/FileDisassemblingAlgorithmPresetViewModel'
            application/json:
              schema:
                $ref: '#/components/schemas/FileDisassemblingAlgorithmPresetViewModel'
            text/json:
              schema:
                $ref: '#/components/schemas/FileDisassemblingAlgorithmPresetViewModel'
        '400':
          description: The provided ID format is incorrect
        '404':
          description: The provided preset ID does not exist
    put:
      tags:
      - FileDisassemblingAlgorithmPresets
      summary: Update a disassembly algorithm preset
      parameters:
      - name: id
        in: path
        description: ID of the preset to be updated
        required: true
        schema:
          type: string
      requestBody:
        description: Update preset model
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/FileDisassemblingAlgorithmPresetEditModel'
          application/json:
            schema:
              $ref: '#/components/schemas/FileDisassemblingAlgorithmPresetEditModel'
          text/json:
            schema:
              $ref: '#/components/schemas/FileDisassemblingAlgorithmPresetEditModel'
          application/*+json:
            schema:
              $ref: '#/components/schemas/FileDisassemblingAlgorithmPresetEditModel'
        required: true
      responses:
        '204':
          description: Request has been successfully completed
        '400':
          description: Incorrect parameter format
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
    delete:
      tags:
      - FileDisassemblingAlgorithmPresets
      summary: Delete a preset
      parameters:
      - name: id
        in: path
        description: ID of the preset to be deleted
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Request has been successfully completed
  /api/integration/v1/fileDisassemblingAlgorithmPresets:
    get:
      tags:
      - FileDisassemblingAlgorithmPresets
      summary: Fetch all presets for the account
      responses:
        '200':
          description: Request has been successfully completed
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FileDisassemblingAlgorithmPresetViewModel'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FileDisassemblingAlgorithmPresetViewModel'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FileDisassemblingAlgorithmPresetViewModel'
    post:
      tags:
      - FileDisassemblingAlgorithmPresets
      summary: Create a disassembly algorithm preset
      requestBody:
        description: Creation preset model
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/FileDisassemblingAlgorithmPresetEditModel'
          application/json:
            schema:
              $ref: '#/components/schemas/FileDisassemblingAlgorithmPresetEditModel'
          text/json:
            schema:
              $ref: '#/components/schemas/FileDisassemblingAlgorithmPresetEditModel'
          application/*+json:
            schema:
              $ref: '#/components/schemas/FileDisassemblingAlgorithmPresetEditModel'
        required: true
      responses:
        '200':
          description: Request has been successfully completed
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/FileDisassemblingAlgorithmPresetCreatedModel'
            application/json:
              schema:
                $ref: '#/components/schemas/FileDisassemblingAlgorithmPresetCreatedModel'
            text/json:
              schema:
                $ref: '#/components/schemas/FileDisassemblingAlgorithmPresetCreatedModel'
        '400':
          description: Incorrect parameter format
components:
  schemas:
    FileDisassemblingAlgorithmPresetCreatedModel:
      type: object
      properties:
        presetId:
          type: string
          description: Preset ID
          format: uuid
      additionalProperties: false
      description: Created preset details
    ProblemDetails:
      type: object
      properties:
        type:
          type:
          - string
          - 'null'
        title:
          type:
          - string
          - 'null'
        status:
          type:
          - integer
          - 'null'
          format: int32
        detail:
          type:
          - string
          - 'null'
        instance:
          type:
          - string
          - 'null'
      additionalProperties: {}
    FileDisassemblingAlgorithmPresetEditModel:
      type: object
      properties:
        name:
          type:
          - string
          - 'null'
          description: Preset name
        algorithmName:
          type:
          - string
          - 'null'
          description: Preset algorithm
        settings:
          description: Settings
      additionalProperties: false
      description: Preset edit model
    FileDisassemblingAlgorithmPresetViewModel:
      type: object
      properties:
        id:
          type: string
          description: ID
          format: uuid
        name:
          type:
          - string
          - 'null'
          description: Name
        algorithmName:
          type:
          - string
          - 'null'
          description: Algorithm
        settings:
          description: Settings
      additionalProperties: false
      description: Preset view model