ArcBest · JSON Structure

Arcbest Api Tracking Status Structure

Type: object Properties: 5
LogisticsFreightLTLSupply ChainShippingTransportation

TrackingStatus is a JSON Structure definition published by ArcBest, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

proNumber status lastLocation estimatedDelivery events

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "proNumber": {
      "type": "string",
      "description": "PRO number",
      "example": "PRO-123456789"
    },
    "status": {
      "type": "string",
      "description": "Current shipment status",
      "enum": [
        "BOOKED",
        "PICKED_UP",
        "IN_TRANSIT",
        "OUT_FOR_DELIVERY",
        "DELIVERED",
        "EXCEPTION"
      ],
      "example": "IN_TRANSIT"
    },
    "lastLocation": {
      "type": "string",
      "description": "Last known location",
      "example": "Kansas City, MO"
    },
    "estimatedDelivery": {
      "type": "date",
      "description": "Estimated delivery date",
      "example": "2026-04-22"
    },
    "events": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "date": {},
          "description": {},
          "location": {}
        }
      }
    }
  },
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/arcbest/refs/heads/main/json-structure/arcbest-api-tracking-status-structure.json",
  "name": "TrackingStatus"
}