CROP

K&M Tire

K&M Tire API response format, parts_kmt MongoDB schema, and tire-specific fields.

K&M Tire Data Structure

K&M Manufacturing provides tire data through their own REST API, separate from DIS. Tire data is stored in the parts_kmt MongoDB collection.

MongoDB Collection

CollectionDocumentsType
parts_kmt~7,091Tires

K&M API Response Format

{
  "partNumber": "KMT-10x16.5",
  "description": "10x16.5 NHS Skid Steer Tire",
  "listPrice": 189.99,
  "tireSize": "10x16.5",
  "plyRating": "10PR",
  "treadPattern": "R4",
  "loadIndex": "130",
  "speedRating": "A8",
  "rimDiameter": 16.5,
  "category": "Skid Steer Tires"
}

Tire-Specific Fields

K&M tires include fields that standard parts don't have:

FieldDescriptionExample
tireSizeStandard tire size notation10x16.5
plyRatingPly rating / load range10PR
treadPatternTread type codeR4
loadIndexLoad capacity index130
speedRatingSpeed rating codeA8
rimDiameterRim diameter in inches16.5

Index Separation

K&M tires are indexed separately from DIS parts:

  • parts_current → DIS parts only (~2,581 docs)
  • tires_current → K&M tires only (~7,091 docs)

See Search Index Improvement Plan for the index separation proposal.

On this page