Maven Machines Routeplans API

The routeplans API from Maven Machines — 1 operation(s) for routeplans.

Operations 1

GET /routeplans GET /routeplans #

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/maven-machines-routeplans-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

maven-machines-routeplans-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Triple SSS Steel Routeplans API
  description: Documentation for Triple SSS Steel
  version: '1.0'
  contact: {}
servers:
- url: https://integrations.mavenmachines.com
tags:
- name: routeplans
paths:
  /routeplans:
    get:
      operationId: RouteplansController_getRouteplans
      summary: GET /routeplans
      description: "\n    API endpoint for reading route plan data for a given date.\n    "
      parameters:
      - name: sessionDate
        required: true
        in: query
        schema:
          type: date
      responses:
        '200':
          description: A successful API response for the route plans for a given date
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetRoutePlansRequestDto'
      tags:
      - routeplans
      security:
      - api_key: []
components:
  schemas:
    GetRoutePlansRequestDto:
      type: object
      properties:
        sessionDate:
          type: date
      required:
      - sessionDate
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: apiKey