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

# Get Shipment Status

> Get end-to-end tracking timeline with events and documents

Retrieve end-to-end tracking timeline with events and documents.

<ParamField status="200" type="object">
  <ParamField name="awbNumber" type="string">
    Air Waybill number
  </ParamField>

  <ParamField name="currentStatus" type="string">
    Current shipment status
  </ParamField>

  <ParamField name="events" type="array">
    <ParamField name="eventCode" type="string">
      Event code (RCS, MAN, DEP, ARR, etc.)
    </ParamField>

    <ParamField name="description" type="string">
      Event description
    </ParamField>

    <ParamField name="location" type="string">
      Event location
    </ParamField>

    <ParamField name="timestamp" type="string" format="date-time">
      Event timestamp
    </ParamField>
  </ParamField>

  <ParamField name="documents" type="array">
    <ParamField name="documentId" type="string">
      Document identifier
    </ParamField>

    <ParamField name="type" type="string">
      Document type
    </ParamField>

    <ParamField name="filename" type="string">
      Document filename
    </ParamField>
  </ParamField>
</ParamField>

### Reference Documentation

<Info>
  For more information on FSU message types and RCS, PRE, DEP statuses, please refer to:

  * Pages 213-220 of "Functional\_Requirements\_V18 FINAL": [https://belli.sg/4nxxCDR](https://belli.sg/4nxxCDR)
</Info>


## OpenAPI

````yaml GET /api/shipments/{awb}/status
openapi: 3.0.3
info:
  title: Mock API
  version: 1.0.0
  description: >-
    Mock OpenAPI spec for QR API Service. All endpoints require API key
    authentication via 'Authorization: Bearer <token>' or 'x-api-key: <token>'
    headers.
servers:
  - url: https://1a557de0-701c-477d-bedd-433520441dae.mock.pstmn.io
    description: Production server
security:
  - ApiKeyAuth: []
  - ApiKeyHeader: []
tags:
  - name: auth-v1
    description: Authentication and user management
  - name: reference-data-v1
    description: Reference data and master data
  - name: flights-v1
    description: Flight schedules and capacity
  - name: quotes-v1
    description: Quotation and pricing
  - name: awb-stock-v1
    description: AWB Stock Management
  - name: bookings-v1
    description: Booking management
  - name: shipments-v1
    description: Shipment documents and tracking
  - name: compliance-v1
    description: Compliance and safety declarations
  - name: operations-v1
    description: Operational events and manifests
  - name: webhooks-v1
    description: Webhook management
  - name: admin-v1
    description: Administrative and audit functions
  - name: qr-exp-cgo-ext-availability-v1
    description: Legacy availability service
  - name: qr-exp-cgo-ext-booking-v1
    description: Legacy booking service
  - name: qr-exp-cgo-ext-flight-schedules-v1
    description: Legacy flight schedules service
  - name: qr-exp-cgo-shipments-v1
    description: Legacy shipments service
  - name: qr-exp-cgo-stock-v1
    description: Legacy stock service
  - name: qr-exp-cgo-tables-v1
    description: Legacy table data service
paths:
  /api/shipments/{awb}/status:
    get:
      tags:
        - operations-v1
      summary: Get shipment tracking
      description: Get end-to-end tracking timeline with events and documents
      parameters:
        - name: awb
          in: path
          required: true
          schema:
            type: string
          description: AWB number
      responses:
        '200':
          description: Tracking timeline
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ShipmentTrackingResponse'
components:
  schemas:
    ShipmentTrackingResponse:
      type: object
      properties:
        awbNumber:
          type: string
          example: '15712345678'
        events:
          type: array
          items:
            $ref: '#/components/schemas/ShipmentEvent'
        documents:
          type: array
          items:
            $ref: '#/components/schemas/Document'
    ShipmentEvent:
      type: object
      properties:
        eventType:
          type: string
          example: RCS
        eventDate:
          type: string
          format: date-time
          example: '2024-01-01T08:00:00Z'
        location:
          type: string
          example: DOH
        description:
          type: string
          example: Cargo received at origin
    Document:
      type: object
      properties:
        id:
          type: string
          example: doc-123
        type:
          type: string
          example: MSDS
        uploadedAt:
          type: string
          format: date-time
          example: '2024-01-01T10:00:00Z'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
    ApiKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````