Goodyear Tire & Rubber Friction API

The Friction API from Goodyear Tire & Rubber — 1 operation(s) for friction.

OpenAPI Specification

goodyear-tire-and-rubber-friction-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Goodyear API Management Portal (GaaS) Catalog Friction API
  description: The Goodyear API Management Portal provides access to Goodyear's suite of APIs for tire and fleet management services including catalog, work order, and service ticket management.
  version: 1.0.0
  contact:
    name: Goodyear
    url: https://gaas-portal.goodyear.com/
servers:
- url: https://gaas-portal.goodyear.com
  description: Goodyear API Management Portal
tags:
- name: Friction
paths:
  /friction:
    get:
      operationId: getFrictionData
      summary: Get Friction Data
      description: Retrieve tire friction data combined with real-time weather conditions for road safety assessment.
      parameters:
      - name: vehicleId
        in: query
        schema:
          type: string
      - name: latitude
        in: query
        schema:
          type: number
      - name: longitude
        in: query
        schema:
          type: number
      responses:
        '200':
          description: Successful response with friction data.
          content:
            application/json:
              schema:
                type: object
                properties:
                  frictionCoefficient:
                    type: number
                  roadCondition:
                    type: string
                  weatherCondition:
                    type: string
        '401':
          description: Unauthorized.
      tags:
      - Friction