Fixflo Fault Tree API

The FaultTree API from Fixflo — 1 operation(s) for faulttree.

Operations 1

GET /FaultTree/Walk/{id} Fault tree walk #

Documentation

Specifications

SDKs

Other Resources

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/fixflo-faulttree-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

fixflo-faulttree-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: '2.0'
  title: Fixflo Fault Tree API
  description: Fixflo api docs
  termsOfService: https://fixflostore.blob.core.windows.net/live-assets/SystemApplicationDeveloperAndAPILicenseAgreement.pdf
  contact:
    email: support@fixflo.com
    name: Support
  license:
    url: https://fixflostore.blob.core.windows.net/live-assets/SystemApplicationDeveloperAndAPILicenseAgreement.pdf
    name: Fixflo API licence agreement
servers:
- url: https://api-sandbox.fixflo.com/api/v2
  description: live sandbox
- url: https://plus.dev.fixflo.com/api/v2
  description: dev
security:
- Bearer: []
tags:
- name: FaultTree
paths:
  /FaultTree/Walk/{id}:
    parameters:
    - schema:
        type: integer
      name: id
      in: path
      required: true
    get:
      summary: Fault tree walk
      tags:
      - FaultTree
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FaultTreeBranch'
      operationId: get-faulttree-walk
      description: Fault tree branches or leaves
components:
  schemas:
    FaultTreeBranch:
      title: FaultTreeBranch
      type: object
      properties:
        Fault:
          $ref: '#/components/schemas/FaultTreeNode'
        Children:
          type: array
          items:
            $ref: '#/components/schemas/FaultTreeNode'
      x-internal: false
      x-examples:
        example-1:
          Fault:
            FaultId: 0
            FaultTitle: string
            ParentFaultId: 0
            FaultLevelTypeId: string
            Depth: 0
            Image: string
            Warning: string
          Children:
          - FaultId: 0
            FaultTitle: string
            ParentFaultId: 0
            FaultLevelTypeId: string
            Depth: 0
            Image: string
            Warning: string
    FaultTreeNode:
      description: Fault tree branch or leaf
      type: object
      x-examples: {}
      title: ''
      x-internal: false
      properties:
        FaultId:
          type: integer
        FaultTitle:
          type: string
        ParentFaultId:
          type: integer
        FaultLevelTypeId:
          type: string
        Depth:
          type: integer
        Image:
          type: string
          description: 'Path to image

            '
        Warning:
          type: string
          description: Fault warning seen in pop up messaage
      required:
      - FaultId
      - FaultTitle
      - ParentFaultId
      - FaultLevelTypeId
      - Depth
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer
      description: ''
x-internal: false