Tracking API documentation

This is the official documentation for the Austrian Post Tracking API.

Introduction

The Austrian Post Tracking API works over HTTPS and uses JSON as the data format.
The API is a RESTful API and uses HTTP methods and HTTP status codes to specify requests and responses.


All requests to the Austrian Post Tracking API must be authenticated using an API token. Include your secret API token in every request you send to the API with the HTTP header. You will receive this from us

-H "Authorization: Bearer $TOKEN" \
-H "Authorization: Bearer o23m9jhb5t73y28zs2z32t753snz32dajlqwuhd23u489z3" \

The API URL is:

https://manager.myaustrianpost.info/api/



An example authentification via CURL - GET

curl \
-X GET \
-H "Accept: application/json" \
-H "Authorization: Bearer o23m9jhb5t73y28zs2z32t753snz32dajlqwuhd23u489z3" \
'https://manager.myaustrianpost.info/api/auth'



{
    "code": "200",
    "message": "Authorization success!"
}

An example track tracking number via CURL - GET

curl \
-X GET \
-H "Accept: application/json" \
-H "Authorization: Bearer o23m9jhb5t73y28zs2z32t753snz32dajlqwuhd23u489z3" \
'https://manager.myaustrianpost.info/api/tracking/{number}'



{
    "query_time": "2023-09-21T08:50:36.306039Z",
    "tracking_number": "LJ061657317AT",
    "code": "200",
    "tracking_info": [
        {
            "tracking_number": "LJ061657317AT",
            "checkpoint_date": "2023-09-20 14:29:00",
            "location": "DK",
            "checkpoint_delivery_status": "delivered",
            "checkpoint_delivery_substatus": "delivered001",
            "tracking_detail": "delivered",
        },
        {
            "tracking_number": "LJ061657317AT",
            "checkpoint_date": "2023-09-20 07:34:00",
            "location": "DK",
            "checkpoint_delivery_status": "pickup",
            "checkpoint_delivery_substatus": "pickup001",
            "tracking_detail": "Item in process of delivery",
        },
        {
            "tracking_number": "LJ061657317AT",
            "checkpoint_date": "2023-09-19 14:01:01",
            "location": "DK",
            "checkpoint_delivery_status": "transit",
            "checkpoint_delivery_substatus": "transit001",
            "tracking_detail": "Item being processed in country of destination",
        },
        {
            "tracking_number": "LJ061657317AT",
            "checkpoint_date": "2023-09-19 13:51:00",
            "location": "DK",
            "checkpoint_delivery_status": "transit",
            "checkpoint_delivery_substatus": "transit001",
            "tracking_detail": "Item received by postal operator in country of destination",
        },
        {
            "tracking_number": "LJ061657317AT",
            "checkpoint_date": "2023-09-18 22:14:18",
            "location": "AT",
            "checkpoint_delivery_status": "transit",
            "checkpoint_delivery_substatus": "transit001",
            "tracking_detail": "Item ready for international transport",
        },
        {
            "tracking_number": "LJ061657317AT",
            "checkpoint_date": "2023-09-18 04:00:00",
            "location": "5000",
            "checkpoint_delivery_status": "transit",
            "checkpoint_delivery_substatus": "transit001",
            "tracking_detail": "Item posted",
        },
        {
            "tracking_number": "LJ061657317AT",
            "checkpoint_date": "2023-09-14 08:18:24",
            "location": "",
            "checkpoint_delivery_status": "inforeceived",
            "checkpoint_delivery_substatus": "inforeceived001",
            "tracking_detail": "Item pre-advised",
        }
    ]
}