GET
https://api.cmswebservice.in/api/tracking/{AwbNo}
API Endpoint: Shipment Tracking
This endpoint is used to track the status of a shipment using the
AwbNo.
It provides shipment details and an event timeline (e.g., in-transit, out for delivery, delivered).
It requires a valid Bearer Token for authorization.
Request
- Method: GET
- URL: https://api.cmswebservice.in/api/tracking/{AwbNo}
- Path Parameter:
AwbNo (string) – The shipment Air Waybill number.
- Headers:
Authorization: Bearer <token>
Response
- Status Code: 200
- Content-Type: application/json
- ErrorMessage:Account code mismatch with this awbno
Response Body
The response will contain shipment details and a list of events:
| Key |
Type |
Description |
| Awbno | string | Shipment Air Waybill number. |
| Shipdate | string (date) | Date when shipment was created. |
| Destination | string | Destination country or city. |
| Consignee | string | Recipient of the shipment. |
| Forwarder | string | Courier company handling the shipment. |
| ForwardingNo | string | Tracking number of the forwarder. |
| Events | array | Tracking events timeline. |
Event Object
| Key |
Type |
Description |
| EventDate | string (date) | Date of the event. |
| EventTime | string (time) | Time of the event. |
| EventCode | string | Short code representing event (DEL, OUT, IN, etc.). |
| EventDescription | string | Full description of the event. |
| Location | string | Event location. |
| ReceiverName | string | Name of the person who received (if delivered). |