Polymath Robotics filesystem API

The filesystem API from Polymath Robotics — 3 operation(s) for filesystem.

Operations 4

GET /v2/fs/health Health check for dufs service #
GET /v2/fs/recursive-list List files and directories recursively #
GET /v2/fs/{path} Get file or directory #
DELETE /v2/fs/{path} Delete file or directory #

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/polymath-filesystem-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

polymath-filesystem-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Polymath API Service CANBus Filesystem API
  description: Polymath API service to interact with a real or simulated polymath-powered robot
  termsOfService: https://www.polymathrobotics.com/legal/terms-of-service
  contact:
    name: Polymath Support
    url: https://www.polymathrobotics.com
    email: api@polymathrobotics.com
  license:
    name: All rights reserved
    url: https://www.polymathrobotics.com/legal/privacy-policy
  version: 2.0.0
servers:
- url: https://polyglot.polymathrobotics.dev/api
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: filesystem
paths:
  /v2/fs/health:
    get:
      tags:
      - filesystem
      summary: Health check for dufs service
      description: Checks whether the dufs service is reachable. Always returns HTTP 200 and reports health in the response body.
      operationId: health_check
      responses:
        '200':
          description: Service health status (healthy or degraded)
          content:
            application/json:
              schema: {}
  /v2/fs/recursive-list:
    get:
      tags:
      - filesystem
      summary: List files and directories recursively
      description: Returns a recursive file and directory tree from the robot data directory.
      operationId: list_files_and_directories
      parameters:
      - required: false
        schema:
          title: Depth
          type: integer
          default: 5
        name: depth
        in: query
      - required: false
        schema:
          title: Path
          type: string
          default: /
        name: path
        in: query
      responses:
        '200':
          description: List of files and directories
          content:
            application/json:
              schema: {}
        '503':
          description: Service unavailable
        '504':
          description: Request timed out
        '500':
          description: Internal server error
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /v2/fs/{path}:
    get:
      tags:
      - filesystem
      summary: Get file or directory
      description: Returns file content or a directory listing from the robot data directory. Use `?zip` to download a zip archive. Use `?json` for directory listings in JSON format.
      operationId: get_file_or_directory
      parameters:
      - required: true
        schema:
          title: Path
          type: string
        name: path
        in: path
      responses:
        '200':
          description: File content or directory listing
          content:
            application/json:
              schema: {}
        '404':
          description: File or directory not found
        '503':
          description: Service unavailable
        '504':
          description: Request timed out
        '500':
          description: Internal server error
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    delete:
      tags:
      - filesystem
      summary: Delete file or directory
      description: Deletes a file or directory from the robot data directory.
      operationId: delete_file_or_directory
      parameters:
      - required: true
        schema:
          title: Path
          type: string
        name: path
        in: path
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '204':
          description: File or directory deleted successfully
        '404':
          description: File or directory not found
        '503':
          description: Service unavailable
        '504':
          description: Request timed out
        '500':
          description: Internal server error
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ValidationError:
      title: ValidationError
      required:
      - loc
      - msg
      - type
      type: object
      properties:
        loc:
          title: Location
          type: array
          items:
            anyOf:
            - type: string
            - type: integer
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
    HTTPValidationError:
      title: HTTPValidationError
      type: object
      properties:
        detail:
          title: Detail
          type: array
          items:
            $ref: '#/components/schemas/ValidationError'
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer