shipink-logo-vector-svgDocumentation

Trackings

Track the delivery status of your shipments.

Track a shipment

Returns the tracking status for the given tracking number.

GET
/trackings/{tracking_number}
AuthorizationBearer <token>

Authenticate using the access_token obtained from POST /token.

Format: Authorization: Bearer {access_token}

In: header

Path Parameters

tracking_numberstring

Shipment tracking number

Response Body

application/json

curl -X GET "https://api.shipink.io/trackings/507855220681824288"

{
  "tracking_number": "507855220681824288",
  "status": "in_transit",
  "carrier": "sendeo",
  "events": [
    {
      "status": "picked_up",
      "description": "Package picked up",
      "location": "Istanbul",
      "timestamp": "2024-03-15T10:00:00Z"
    },
    {
      "status": "in_transit",
      "description": "Package in transit",
      "location": "Ankara",
      "timestamp": "2024-03-16T08:30:00Z"
    }
  ]
}

How is this guide?