Maven Machines Vehicles API

The Vehicles API from Maven Machines — 3 operation(s) for vehicles.

Business capability
Fleet & Mobile Asset Management BC-2430

Operations 5

GET /vehicles/{vehicleNumber} Get vehicles controller get vehicles #
PATCH /vehicles/{vehicleNumber} Update vehicle controller update vehicle #
POST /vehicles/upload Upload vehicles controller upload #
POST /vehicles Create vehicle controller create vehicle #
GET /vehicles Get all vehicles controller get vehicles #

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-vehicles-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

maven-machines-vehicles-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Assets Vehicles API
  description: Documentation for Company Assets APIs
  version: '1.0'
  contact: {}
servers:
- url: https://integrations.mavenmachines.com
tags:
- name: Vehicles
paths:
  /vehicles/{vehicleNumber}:
    get:
      operationId: GetVehiclesController_getVehicles
      summary: Get vehicles controller get vehicles
      description: Retrieves a list of vehicles for a company.
      parameters:
      - name: page
        required: false
        in: query
        description: Page number
        example: 3
        schema:
          type: number
      - name: limit
        required: false
        in: query
        description: The number of items to be returned per page.
        example: 10
        schema:
          type: number
      - name: includeInactive
        required: false
        in: query
        description: If set to "true", the API will return items marked as inactive in Maven system.
        example: false
        schema:
          type: boolean
      - name: includeAttributes
        required: false
        in: query
        description: If set to "true", the API will return full vehicle object including additional attributes.
        example: true
        schema:
          type: boolean
      - name: vehicleNumber
        required: true
        in: path
        description: Can be a single value or a comma separated list of vehicle numbers
        example: vehicleNumber-1,vehicleNumber-2,vehicleNumber-3
        schema:
          type: string
      responses:
        '200':
          description: A list of vehicles along side with pagination information (limit and next page number).
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetVehiclesResponseApi'
        '400':
          description: Bad request.
        '500':
          description: Unknown server error.
      tags:
      - Vehicles
      security:
      - api_key: []
      x-summary-source: derived
    patch:
      operationId: UpdateVehicleController_updateVehicle
      summary: Update vehicle controller update vehicle
      description: Updates a vehicle. Only provided key-value pairs provided are updated.
      parameters:
      - name: vehicleNumber
        required: true
        in: path
        example: vehicleNumber-1
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateVehicleRequestDTO'
      responses:
        '200':
          description: Returns updated vehicle.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VehicleDTO'
        '400':
          description: Bad request.
        '500':
          description: Unknown server error.
      tags:
      - Vehicles
      security:
      - api_key: []
      x-summary-source: derived
  /vehicles/upload:
    post:
      operationId: UploadVehiclesController_upload
      summary: Upload vehicles controller upload
      description: 'Upload vehicles API allows you insert, update or deactivate vehicles.

        API expects a CSV file with the following columns: ChgType, VehicleStatus, UnitID, VehicleType, Make, Model, Year, VIN, Domicile, CurrentTerm, EquipType, EquipSpecs, Liftgate, Heat, CDL.


        Column description:

        - ChgType: 1 = Add 2 = Deactivate, 3 = Update;

        - Status: ACTIVE or INACTIVE;

        - Domicile: Map to an attribute field;

        - CurrentTerm: Map to the domicile field;

        - Liftgate: Unit is equipped with a liftgate 1 = Yes, 0 = No;

        - Heat: Unit is heated. 1 = Yes, 0 = No;

        - CDL: Requires driver with CDL. 1 = Yes, 0 = No;


        API supports up to 1000 rows in a CSV file.'
      parameters: []
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                file:
                  type: string
                  format: binary
      responses:
        '200':
          description: An array of successfully uploaded or failed vehicle numbers.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UploadVehiclesResponseApi'
        '400':
          description: Bad request.
        '500':
          description: Unknown server error.
      tags:
      - Vehicles
      security:
      - api_key: []
      x-summary-source: derived
  /vehicles:
    post:
      operationId: CreateVehicleController_createVehicle
      summary: Create vehicle controller create vehicle
      description: Creates a new vehicle. If the vehicleNumber already exists, the request will be rejected.
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VehicleDTO'
      responses:
        '201':
          description: Returns created vehicle
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VehicleDTO'
        '400':
          description: Bad request.
        '500':
          description: Unknown server error.
      tags:
      - Vehicles
      security:
      - api_key: []
      x-summary-source: derived
    get:
      operationId: GetAllVehiclesController_getVehicles
      summary: Get all vehicles controller get vehicles
      description: Retrieves all company vehicles.
      parameters:
      - name: page
        required: false
        in: query
        description: Page number
        example: 3
        schema:
          type: number
      - name: limit
        required: false
        in: query
        description: The number of items to be returned per page.
        example: 10
        schema:
          type: number
      - name: includeInactive
        required: false
        in: query
        description: If set to "true", the API will return items marked as inactive in Maven system.
        example: false
        schema:
          type: boolean
      - name: includeAttributes
        required: false
        in: query
        description: If set to "true", the API will return full vehicle object including additional attributes.
        example: true
        schema:
          type: boolean
      responses:
        '200':
          description: A list of vehicles along side with pagination information (limit and next page number).
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetVehiclesResponseApi'
        '400':
          description: Bad request.
        '500':
          description: Unknown server error.
      tags:
      - Vehicles
      security:
      - api_key: []
      x-summary-source: derived
components:
  schemas:
    UpdateVehicleRequestDTO:
      type: object
      properties:
        powerUnitType:
          type: string
        vin:
          type: string
          example: 1WVVVV36241B704500
        make:
          type: string
          example: Acme Corporation
        model:
          type: string
          example: base
        year:
          type: number
          example: 2015
        assetId:
          type: string
          example: 321321-321321-3213
        licensePlateNumber:
          type: string
          example: '555'
        licensePlateState:
          type: string
          example: AT
        fuelType:
          type: string
          example: Petrol
        vehicleStatus:
          type: string
          enum:
          - active
          - inactive
          - disabled
        attributes:
          $ref: '#/components/schemas/VehicleAttributesResponse'
        groupCodes:
          type: array
          items:
            type: string
    VehicleAttributesResponse:
      type: object
      properties:
        Domicile:
          type: string
          example: UNK
        EquipType:
          type: string
          example: POWER UNIT
        EquipSpecs:
          type: string
          example: AA 20
        CDL:
          type: number
          enum:
          - 0
          - 1
    GetVehiclesResponseApi:
      type: object
      properties:
        pagination:
          $ref: '#/components/schemas/PaginationDTO'
        data:
          type: array
          items:
            $ref: '#/components/schemas/VehicleDTO'
      required:
      - data
    UploadVehiclesResponseApi:
      type: object
      properties:
        status:
          type: string
          example: ok
        data:
          type: array
          items:
            $ref: '#/components/schemas/VehicleDTO'
      required:
      - status
    PaginationDTO:
      type: object
      properties:
        cursor:
          $ref: '#/components/schemas/PaginationCursor'
        limit:
          type: number
          description: The number of items to be returned per page.
          example: 10
      required:
      - cursor
      - limit
    PaginationCursor:
      type: object
      properties:
        pageNum:
          type: number
          description: Next page number.
          example: 5
      required:
      - pageNum
    VehicleDTO:
      type: object
      properties:
        powerUnitNumber:
          type: string
          example: 111V
        powerUnitType:
          type: string
        vin:
          type: string
          example: 1WVVVV36241B704500
        make:
          type: string
          example: Acme Corporation
        model:
          type: string
          example: base
        year:
          type: number
          example: 2015
        assetId:
          type: string
          example: 321321-321321-3213
        licensePlateNumber:
          type: string
          example: '555'
        licensePlateState:
          type: string
          example: AT
        fuelType:
          type: string
          example: Petrol
        vehicleStatus:
          type: string
          enum:
          - active
          - inactive
          - disabled
        attributes:
          $ref: '#/components/schemas/VehicleAttributesResponse'
        groupCodes:
          type: array
          items:
            type: string
      required:
      - powerUnitNumber
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: apiKey