> ## Documentation Index
> Fetch the complete documentation index at: https://docs.shippeek.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Track by PRO/tracking number

> Track a shipment using the carrier's PRO number or tracking number. Returns real-time tracking events from the carrier.



## OpenAPI

````yaml openapi.json get /track/{trackingNumber}
openapi: 3.0.0
info:
  title: ShipPeek API
  version: 1.0.0
  description: Multi-carrier shipping rate aggregation, booking, and tracking API.
  contact:
    name: ShipPeek API Support
    email: yash@shippeek.com
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
  termsOfService: https://shippeek.com/terms
servers:
  - url: https://api.shippeek.dev
    description: Sandbox
  - url: https://api.shippeek.com
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Rates
    description: Get shipping rates from multiple carriers
  - name: Booking
    description: Book shipments and manage pickups
  - name: Tracking
    description: Track shipments by PRO or tracking number
  - name: Shipments
    description: Retrieve and search shipment data
paths:
  /track/{trackingNumber}:
    get:
      tags:
        - Tracking
      summary: Track by PRO/tracking number
      description: >-
        Track a shipment using the carrier's PRO number or tracking number.
        Returns real-time tracking events from the carrier.
      operationId: trackByNumber
      parameters:
        - name: trackingNumber
          in: path
          required: true
          description: PRO number or tracking number
          schema:
            type: string
          examples:
            dohrn:
              value: '88689418'
              summary: Dohrn PRO
            ups:
              value: 1ZJ734V30334610288
              summary: UPS tracking
            estes:
              value: 164-1956299
              summary: Estes PRO
        - name: carrier
          in: query
          required: true
          description: Carrier SCAC code
          schema:
            type: string
            enum:
              - aact
              - xpol
              - dohr
              - upgf
              - exla
              - odfl
              - saia
              - mgul
              - sutn
              - ccfs
              - fxfe
              - ups
      responses:
        '200':
          description: Tracking events returned
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TrackingEvent'
              example:
                - createdDate: '2026-01-08T02:13:00.000Z'
                  eventDate: '2026-01-08'
                  eventTime: '02:13:00'
                  eventType: in-transit
                  summary: Trailer Arrived
                  location:
                    city: Rock Island
                    state: IL
                    country: US
                    postalCode: '61201'
                - createdDate: '2026-01-07T16:01:00.000Z'
                  eventDate: '2026-01-07'
                  eventTime: '16:01:00'
                  eventType: pickup
                  summary: Picked Up
                  location:
                    city: Kansas City
                    state: MO
                    country: US
                    postalCode: '64101'
        '400':
          description: Missing carrier parameter
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                error: Carrier parameter is required
        '401':
          description: Invalid or missing API key
        '404':
          description: Carrier not configured or shipment not found
        '500':
          description: Carrier API error
components:
  schemas:
    TrackingEvent:
      type: object
      properties:
        createdDate:
          type: string
          format: date-time
          description: Full ISO timestamp when the event was recorded
        eventDate:
          type: string
          format: date
          description: Date of the tracking event (YYYY-MM-DD)
        eventTime:
          type: string
          description: Time of the event (HH:mm:ss)
        eventType:
          type: string
          enum:
            - pickup
            - in-transit
            - arrived
            - departed
            - delivered
            - delayed
            - out-for-delivery
            - update
            - stop-completed
            - stop-incomplete
          description: Type of tracking event
        summary:
          type: string
          description: Description of the event from the carrier
        location:
          type: object
          properties:
            city:
              type: string
            state:
              type: string
            country:
              type: string
            postalCode:
              type: string
    Error:
      type: object
      properties:
        error:
          type: string
          description: Error message
        message:
          type: string
          description: Detailed error description
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Your ShipPeek API token in the format `client_id.client_secret`.

````