Automile ResourceOwnerVehicleHealth3 API

The ResourceOwnerVehicleHealth3 API from Automile — 2 operation(s) for resourceownervehiclehealth3.

Business capability
Fleet Telematics and Monitoring BC-2430.40

Operations 2

GET /v1/resourceowner/vehiclehealth3/{vehicleId} Get health indicators for a vehicle #
GET /v1/resourceowner/vehiclehealth3/{dateperiod}/{vehicleId} Get health indicators for a vehicle over a period of time #

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/automile-resourceownervehiclehealth3-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

automile-resourceownervehiclehealth3-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Automile ClientApi Resource Owner Vehicle Health3 API
  version: v1
servers:
- url: https://api.automile.com/
tags:
- name: ResourceOwnerVehicleHealth3
paths:
  /v1/resourceowner/vehiclehealth3/{vehicleId}:
    get:
      tags:
      - ResourceOwnerVehicleHealth3
      summary: Get health indicators for a vehicle
      description: Only vehicle that the user has access to can be queried
      operationId: GetResourceOwnerVehicleHealth3
      parameters:
      - in: path
        name: vehicleId
        description: The vehicle id
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: The VehicleHealths are returned
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/VehicleHealth'
            application/json:
              schema:
                $ref: '#/components/schemas/VehicleHealth'
            text/json:
              schema:
                $ref: '#/components/schemas/VehicleHealth'
        '403':
          description: Request is forbidden, meaning you don't have access to this vehicle
        '500':
          description: Internal server error
      security:
      - oauth2: []
  /v1/resourceowner/vehiclehealth3/{dateperiod}/{vehicleId}:
    get:
      tags:
      - ResourceOwnerVehicleHealth3
      summary: Get health indicators for a vehicle over a period of time
      description: Only vehicle that the user has access to can be queried
      operationId: GetResourceOwnerVehicleHealthPeriod3
      parameters:
      - in: path
        name: dateperiod
        description: Date period parameter, in the form of only year (2014), year and month (201401), or interval {201301-201401}
        required: true
        schema:
          type: string
      - in: path
        name: vehicleId
        description: The vehicle id
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: The VehicleHealths are returned
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/VehicleHealth'
            application/json:
              schema:
                $ref: '#/components/schemas/VehicleHealth'
            text/json:
              schema:
                $ref: '#/components/schemas/VehicleHealth'
        '403':
          description: Request is forbidden, meaning you don't have access to this vehicle
        '400':
          description: Bad request, date period is not in a correct format
        '500':
          description: Internal server error
      security:
      - oauth2: []
components:
  schemas:
    DTCEvent:
      type: object
      properties:
        Occured:
          format: date-time
          type: string
        DTCEventDetails:
          type: array
          items:
            $ref: '#/components/schemas/DTCEventDetail'
        Latitude:
          format: double
          type: number
        Longitude:
          format: double
          type: number
      additionalProperties: false
    BatteryEvent:
      type: object
      properties:
        Occured:
          format: date-time
          type: string
        Latitude:
          format: double
          type: number
        Longitude:
          format: double
          type: number
        BatteryStatus:
          format: int32
          enum:
          - 0
          - 1
          - 2
          - 3
          type: integer
      additionalProperties: false
    MILEvent:
      type: object
      properties:
        Occured:
          format: date-time
          type: string
        MILStatus:
          format: int32
          enum:
          - 0
          - 1
          type: integer
        MILDistance:
          format: int32
          type: integer
        CLRDistanceUntilToday:
          format: double
          type: number
        NumberOfDTCs:
          format: int32
          type: integer
        Latitude:
          format: double
          type: number
        Longitude:
          format: double
          type: number
      additionalProperties: false
    VehicleHealth:
      type: object
      properties:
        VehicleId:
          format: int32
          type: integer
        PeriodFrom:
          format: int32
          type: integer
        PeriodTo:
          format: int32
          type: integer
        LastBatteryStatus:
          format: int32
          enum:
          - 0
          - 1
          - 2
          - 3
          type: integer
        LastBatteryWarning:
          $ref: '#/components/schemas/BatteryEvent'
        BatteryEventsForSelectedPeriod:
          type: array
          items:
            $ref: '#/components/schemas/BatteryEvent'
        LastMILEvent:
          $ref: '#/components/schemas/MILEvent'
        MILEventsForSelectedPeriod:
          type: array
          items:
            $ref: '#/components/schemas/MILEvent'
        LastDTCEvent:
          $ref: '#/components/schemas/DTCEvent'
        LastPendingDTCEvent:
          $ref: '#/components/schemas/DTCEvent'
        DTCEventsForSelectedPeriod:
          type: array
          items:
            $ref: '#/components/schemas/DTCEvent'
        PendingDTCEventsForSelectedPeriod:
          type: array
          items:
            $ref: '#/components/schemas/DTCEvent'
      additionalProperties: false
    DTCEventDetail:
      type: object
      properties:
        DTC:
          type: string
        FaultLocation:
          type: string
        ProbableCause:
          type: string
      additionalProperties: false
  securitySchemes:
    oauth2:
      type: oauth2
      flows:
        implicit:
          scopes:
            read: Read access to protected resources
            write: Write access to protected resources
          authorizationUrl: https://api.automile.com/login/
      description: OAuth2 Implicit Grant