Goodyear Tire & Rubber Work Orders API

The Work Orders API from Goodyear Tire & Rubber — 1 operation(s) for work orders.

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/goodyear-tire-and-rubber-work-orders-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

goodyear-tire-and-rubber-work-orders-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Goodyear API Management Portal (GaaS) Catalog Work Orders 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: Work Orders
paths:
  /work-orders:
    get:
      operationId: getWorkOrders
      summary: Get Work Orders
      description: Retrieve service work orders for commercial truck tire services.
      responses:
        '200':
          description: Successful response with work orders.
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Unauthorized.
      tags:
      - Work Orders
    post:
      operationId: createWorkOrder
      summary: Create Work Order
      description: Create a new service work order for commercial truck tire services.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
      responses:
        '201':
          description: Work order created successfully.
        '401':
          description: Unauthorized.
      tags:
      - Work Orders