Meta API Live Tracking 

  1. Call Parameters and Body

    Attention – The Meta API tracking is limited in it’s possible use cases. It is not allowed to use it for data mining and tracking other parcels than your own. Rate limiting applies and you can be blocked from this functionality in case of failure to align with these guidelines. Full details will be provided by the Meta API onboarding team.

     

    Method:

    • POST

    URL:

    (stage)

    Parameters:

    • debug true

    Authorization:

    • no auth

    Headers

    • apiKey Fasttrack API Key
    • Content-Type application/json

    Body:              

    • Object JSON (raw)

     

    {
        "language": "EN",
        "parcelNumberAndReceiverZipcodeList": [
            {
                "parcelNumber": "05328817355211",
                "receiverZipcode": "1160"
            }
        ]
    }
    
  2. Response

    Body:

    [
        {
            "parcelNumber": "05328817355211",
            "service": {
                "code": "327",
                "description": "normal parcel, B2C"
            },
            "weight": "68300",
            "parcelEvents": [
                {
                    "eventDateTime": "2022-02-08",
                    "country": "BELGIUM",
                    "statusFamilyLabel": "PARCEL OUT FOR DELIVERY",
                    "statusLabel": "Destination depot - Out for delivery",
                    "statusId": "DLO",
                    "translation": "Your parcel is on its way"
                },
                {
                    "eventDateTime": "2022-02-08",
                    "country": "BELGIUM",
                    "statusFamilyLabel": "NEUTRAL",
                    "statusLabel": "Message Notification - Destination Location: Notification of delivery",
                    "statusId": "MSDLO",
                    "translation": "We informed you that your parcel will be delivered on  "
                },
                {
                    "eventDateTime": "2022-02-08",
                    "country": "BELGIUM",
                    "statusFamilyLabel": "AT DELIVERY CENTER",
                    "statusLabel": "Destination depot - Inbound",
                    "statusId": "DLI",
                    "translation": "Your parcel arrived at our delivery depot"
                },
                {
                    "eventDateTime": "2022-02-07",
                    "country": "BELGIUM",
                    "statusFamilyLabel": "NEUTRAL",
                    "statusLabel": "Status parcel - Loaded",
                    "statusId": "SPL",
                    "translation": "Your parcel is on its way"
                },
                {
                    "eventDateTime": "2022-02-07",
                    "country": "BELGIUM",
                    "statusFamilyLabel": "IN TRANSIT",
                    "statusLabel": "Hub or other premises - Sorted",
                    "statusId": "HUS",
                    "translation": "Your parcel was sorted for transport to our next premises"
                },
                {
                    "eventDateTime": "2022-02-07",
                    "country": "BELGIUM",
                    "statusFamilyLabel": "PARCEL HANDED TO DPD",
                    "statusLabel": "Origin depot - Inbound",
                    "statusId": "ORI",
                    "translation": "Your parcel entered our network"
                },
                {
                    "eventDateTime": "2022-02-04",
                    "country": "GERMANY",
                    "statusFamilyLabel": "NEUTRAL",
                    "statusLabel": "Data exchange - Data received and integrated",
                    "statusId": "ENA",
                    "translation": "We have successfully integrated your data"
                }
            ]
        }
    ]
    
Was this post helpful?(Required)