Revvo Fleet API

The Fleet API

Operations 1

GET /fleet/{fleetId} Get details of all vehicles in the fleet #

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/revvo-fleet-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

revvo-fleet-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: revvo-api Api-keys Fleet API
  version: '0.0'
  description: Api key management (requires admin access)
servers:
- url: https://api.revvo.ai/v0
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Fleet
  description: The Fleet API
paths:
  /fleet/{fleetId}:
    get:
      tags:
      - Fleet
      summary: Get details of all vehicles in the fleet
      description: Get details of all vehicles in the fleet
      operationId: getFleetStatus
      parameters:
      - name: fleetId
        in: path
        description: Unique identifier for the fleet. Typically formatted as revvo-XXXX. This can be found in your admin / integrations / revvo API setup page
        required: true
        schema:
          type: string
      - name: timestamp
        in: query
        description: 'Optionally retrieve fleet data at a given point in time. Point in time is expressed as seconds since epoch.

          This option depends on periodic snapshots of the fleet status being saved. Closest available snapshot within a 24h period of the target timestamp will be selected.

          An error will occur if no snapshot is available within that 24h period

          '
        explode: false
        schema:
          type:
          - integer
          - 'null'
          format: int64
      responses:
        '200':
          description: A successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetFleetStatus200Response'
        '401':
          description: Unauthorized
      security:
      - Bearer: []
      - bearerAuth: []
components:
  schemas:
    treadClass:
      type: string
      description: Tread class
      enum:
      - CRITICAL_LOW
      - LOW
      - MEDIUM
      - HIGH
      - UNKNOWN
      x-type: String
    EventListInner:
      type: object
      properties:
        vin:
          type:
          - string
          - 'null'
          description: VIN
          example: WVGBV75N19W507096
        tirePosition:
          allOf:
          - $ref: '#/components/schemas/tirePosition_1'
        eventTime:
          type:
          - integer
          - 'null'
          description: Timestamp in epoch seconds
          format: int64
          example: 1577836800
        type:
          description: Get type
          allOf:
          - $ref: '#/components/schemas/type'
        resolutionTime:
          type:
          - integer
          - 'null'
          description: Timestamp in epoch seconds or null if the event is not resolved
          format: int64
          example: 1577836800
      description: EventListInner
    TireStatusListInner:
      type: object
      properties:
        timestamp:
          type:
          - integer
          - 'null'
          description: Timestamp in epoch seconds
          format: int64
          example: 1577836800
        tirePosition:
          description: Get tirePosition
          allOf:
          - $ref: '#/components/schemas/tirePosition_1'
        sensorId:
          type:
          - string
          - 'null'
          description: Get sensorId
        pressure:
          type:
          - number
          - 'null'
          description: Pressure in PSI
          example: 31.5
        temperature:
          type:
          - number
          - 'null'
          description: Temperature in Celsius
          example: 27.2
        treadClass:
          description: Get treadClass
          allOf:
          - $ref: '#/components/schemas/treadClass'
        treadInMm:
          type:
          - number
          - 'null'
          format: double
        tireTotalKm:
          type:
          - number
          - 'null'
          format: double
        openEvents:
          type:
          - array
          - 'null'
          description: Get openEvents
          items:
            $ref: '#/components/schemas/EventListInner'
        resolvedEvents:
          type:
          - array
          - 'null'
          description: Get resolvedEvents
          items:
            $ref: '#/components/schemas/EventListInner'
      description: TireStatusListInner
    tirePosition_1:
      type: string
      description: 'Tire position on the vehicle: \[SIDE\]_\[AXLE_NUMBER\] with an optional _\[INNER/OUTER\] suffix, plus SPARE_\[N\].'
      enum:
      - LEFT_1
      - LEFT_1_INNER
      - LEFT_1_OUTER
      - RIGHT_1
      - RIGHT_1_INNER
      - RIGHT_1_OUTER
      - LEFT_2
      - LEFT_2_INNER
      - LEFT_2_OUTER
      - RIGHT_2
      - RIGHT_2_INNER
      - RIGHT_2_OUTER
      - LEFT_3
      - LEFT_3_INNER
      - LEFT_3_OUTER
      - RIGHT_3
      - RIGHT_3_INNER
      - RIGHT_3_OUTER
      - LEFT_4
      - LEFT_4_INNER
      - LEFT_4_OUTER
      - RIGHT_4
      - RIGHT_4_INNER
      - RIGHT_4_OUTER
      - LEFT_5
      - LEFT_5_INNER
      - LEFT_5_OUTER
      - RIGHT_5
      - RIGHT_5_INNER
      - RIGHT_5_OUTER
      - LEFT_6
      - LEFT_6_INNER
      - LEFT_6_OUTER
      - RIGHT_6
      - RIGHT_6_INNER
      - RIGHT_6_OUTER
      - LEFT_7
      - LEFT_7_INNER
      - LEFT_7_OUTER
      - RIGHT_7
      - RIGHT_7_INNER
      - RIGHT_7_OUTER
      - LEFT_8
      - LEFT_8_INNER
      - LEFT_8_OUTER
      - RIGHT_8
      - RIGHT_8_INNER
      - RIGHT_8_OUTER
      - LEFT_9
      - LEFT_9_INNER
      - LEFT_9_OUTER
      - RIGHT_9
      - RIGHT_9_INNER
      - RIGHT_9_OUTER
      - LEFT_10
      - LEFT_10_INNER
      - LEFT_10_OUTER
      - RIGHT_10
      - RIGHT_10_INNER
      - RIGHT_10_OUTER
      - LEFT_11
      - LEFT_11_INNER
      - LEFT_11_OUTER
      - RIGHT_11
      - RIGHT_11_INNER
      - RIGHT_11_OUTER
      - LEFT_12
      - LEFT_12_INNER
      - LEFT_12_OUTER
      - RIGHT_12
      - RIGHT_12_INNER
      - RIGHT_12_OUTER
      - SPARE_1
      - SPARE_2
      - SPARE_3
      - SPARE_4
      - SPARE_5
      - SPARE_6
      - LEFT_1_OUTER_OUTER
      - LEFT_1_OUTER_INNER
      - LEFT_1_INNER_OUTER
      - LEFT_1_INNER_INNER
      - RIGHT_1_OUTER_OUTER
      - RIGHT_1_OUTER_INNER
      - RIGHT_1_INNER_OUTER
      - RIGHT_1_INNER_INNER
      - LEFT_2_OUTER_OUTER
      - LEFT_2_OUTER_INNER
      - LEFT_2_INNER_OUTER
      - LEFT_2_INNER_INNER
      - RIGHT_2_OUTER_OUTER
      - RIGHT_2_OUTER_INNER
      - RIGHT_2_INNER_OUTER
      - RIGHT_2_INNER_INNER
      - LEFT_3_OUTER_OUTER
      - LEFT_3_OUTER_INNER
      - LEFT_3_INNER_OUTER
      - LEFT_3_INNER_INNER
      - RIGHT_3_OUTER_OUTER
      - RIGHT_3_OUTER_INNER
      - RIGHT_3_INNER_OUTER
      - RIGHT_3_INNER_INNER
      - LEFT_4_OUTER_OUTER
      - LEFT_4_OUTER_INNER
      - LEFT_4_INNER_OUTER
      - LEFT_4_INNER_INNER
      - RIGHT_4_OUTER_OUTER
      - RIGHT_4_OUTER_INNER
      - RIGHT_4_INNER_OUTER
      - RIGHT_4_INNER_INNER
      - LEFT_5_OUTER_OUTER
      - LEFT_5_OUTER_INNER
      - LEFT_5_INNER_OUTER
      - LEFT_5_INNER_INNER
      - RIGHT_5_OUTER_OUTER
      - RIGHT_5_OUTER_INNER
      - RIGHT_5_INNER_OUTER
      - RIGHT_5_INNER_INNER
      - LEFT_6_OUTER_OUTER
      - LEFT_6_OUTER_INNER
      - LEFT_6_INNER_OUTER
      - LEFT_6_INNER_INNER
      - RIGHT_6_OUTER_OUTER
      - RIGHT_6_OUTER_INNER
      - RIGHT_6_INNER_OUTER
      - RIGHT_6_INNER_INNER
      - LEFT_7_OUTER_OUTER
      - LEFT_7_OUTER_INNER
      - LEFT_7_INNER_OUTER
      - LEFT_7_INNER_INNER
      - RIGHT_7_OUTER_OUTER
      - RIGHT_7_OUTER_INNER
      - RIGHT_7_INNER_OUTER
      - RIGHT_7_INNER_INNER
      - LEFT_8_OUTER_OUTER
      - LEFT_8_OUTER_INNER
      - LEFT_8_INNER_OUTER
      - LEFT_8_INNER_INNER
      - RIGHT_8_OUTER_OUTER
      - RIGHT_8_OUTER_INNER
      - RIGHT_8_INNER_OUTER
      - RIGHT_8_INNER_INNER
      - LEFT_9_OUTER_OUTER
      - LEFT_9_OUTER_INNER
      - LEFT_9_INNER_OUTER
      - LEFT_9_INNER_INNER
      - RIGHT_9_OUTER_OUTER
      - RIGHT_9_OUTER_INNER
      - RIGHT_9_INNER_OUTER
      - RIGHT_9_INNER_INNER
      - LEFT_10_OUTER_OUTER
      - LEFT_10_OUTER_INNER
      - LEFT_10_INNER_OUTER
      - LEFT_10_INNER_INNER
      - RIGHT_10_OUTER_OUTER
      - RIGHT_10_OUTER_INNER
      - RIGHT_10_INNER_OUTER
      - RIGHT_10_INNER_INNER
      - LEFT_11_OUTER_OUTER
      - LEFT_11_OUTER_INNER
      - LEFT_11_INNER_OUTER
      - LEFT_11_INNER_INNER
      - RIGHT_11_OUTER_OUTER
      - RIGHT_11_OUTER_INNER
      - RIGHT_11_INNER_OUTER
      - RIGHT_11_INNER_INNER
      - LEFT_12_OUTER_OUTER
      - LEFT_12_OUTER_INNER
      - LEFT_12_INNER_OUTER
      - LEFT_12_INNER_INNER
      - RIGHT_12_OUTER_OUTER
      - RIGHT_12_OUTER_INNER
      - RIGHT_12_INNER_OUTER
      - RIGHT_12_INNER_INNER
      x-type: String
    type:
      type: string
      description: Event type
      enum:
      - LOW_PRESSURE
      - CRITICAL_LOW_PRESSURE
      - LOW_PRESSURE_IN_MOTION
      - CRITICAL_LOW_PRESSURE_IN_MOTION
      - LOW_TREAD
      - CRITICAL_LOW_TREAD
      - LOW_PRESSURE_FROM_TEMP
      - INVALID_SENSOR_DATA
      - DEFLATED
      - LEAK
      - HIGH_TEMPERATURE
      - HIGH_PRESSURE
      - SUSPECTED_SERVICE_FROM_DEFLATION
      - SUSPECTED_TIRE_ROTATION
      x-type: String
    VehicleStatus:
      type: object
      properties:
        vin:
          type:
          - string
          - 'null'
          description: VIN
          example: WVGBV75N19W507096
        assetId:
          type:
          - string
          - 'null'
          description: Vehicle asset identifier
          example: Vehicle 1
        geolocation:
          description: Get geolocation
          allOf:
          - $ref: '#/components/schemas/geolocation'
        tires:
          type:
          - array
          - 'null'
          description: Get tires
          items:
            $ref: '#/components/schemas/TireStatusListInner'
      description: VehicleStatus
    internalErrorCode:
      type: string
      description: Internal Error Code
      enum:
      - _1
      - _2
      - _3
      - _4
      x-type: String
    GetFleetStatus200Response:
      type: object
      properties:
        value:
          type:
          - array
          - 'null'
          description: Get value
          items:
            $ref: '#/components/schemas/VehicleStatus'
        valueTimestamp:
          type:
          - integer
          - 'null'
          description: The actual timestamp of the data returned in the value property (as seconds since epoch)
          format: int64
        displayErrorMessage:
          type:
          - string
          - 'null'
          description: Get displayErrorMessage
          example: Error contacting servers. Please try again later.
        internalErrorMessage:
          type:
          - string
          - 'null'
          description: Get internalErrorMessage
          example: Failed loading tires, please contact the server team.
        internalErrorCode:
          description: Get internalErrorCode
          allOf:
          - $ref: '#/components/schemas/internalErrorCode'
        success:
          type: boolean
          description: 'true'
          example: true
      description: GetFleetStatus200Response
    geolocation:
      type: object
      properties:
        timestamp:
          type:
          - integer
          - 'null'
          description: Timestamp in epoch seconds
          format: int64
          example: 1577836800
        latitude:
          type:
          - number
          - 'null'
          description: Latitude
          example: 37.5550874
        longitude:
          type:
          - number
          - 'null'
          description: Longitude
          example: -122.3000345
      description: Geolocation
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT