Track Info API

The delivery status of orders can be queried.

Currently, it only works for orders sent with the GLS courier service.

* At least one of the orderIds and updatedAt fields is mandatory.

Sample request (XML):

https://app.webshippy.com/getTrackInfo/xml?apiKey={{apiKey}}&page=0&orderIds=32042911

Sample request (JSON):

https://app.webshippy.com/getTrackInfo/json?apiKey={{apiKey}}&page=0&orderIds=32042911

Response (JSON):

{
    "status": "success",
    "message": [],
    "result": {
        "274": {
            "orderId": "274",
            "trackingNo": "3300597015",
            "shippingStatus": "completed",
            "trackingUrl": "https://gls-group.eu/HU/hu/csomagkovetes?match=3300597015",
            "history": [
                {
                    "status": "delivered",
                    "statusCode": "05",
                    "date": "2024-01-03 14:31:49"
                },
                {
                    "status": "Can be picked up from GLS parcel locker",
                    "statusCode": "54",
                    "date": "2024-01-02 10:44:03"
                },
                {
                    "status": "Data sent",
                    "statusCode": "51",
                    "date": "2023-12-29 13:15:05"
                }
            ]
        }
    }
}

Response on incorrect request:

{
    "status": "error",
    "message": [
        "Error: At least one field is required: orderIDs, updatedAt"
    ]
}

Last updated