HepsiGlobal Marketplace API
  1. Tracking
HepsiGlobal Marketplace API
  • Introduction
  • Authentication
    • Create token
      POST
  • Products
    • Product Status
      PUT
  • Orders
    • Create Order
      POST
    • Order Item Delivery
      PUT
    • Cancel order by marketplace
      PUT
  • Shipments
    • Send shipment label (fulfillment by MP)
      POST
    • Set shipment status (fulfillment by MP)
      PUT
  • Tracking
    • Shipment Tracking With Barcode
      GET
    • Shipment Tracking With Shipment ID
      GET
  • Refunds
    • Create Refund
      POST
  • Webhooks Integration API (Marketplace's API)
    • Product
      • Product Create
      • Product Update
      • Variant Create
      • Variant Update
      • Enable/Disable product
    • Listing
      • Listing Priority
      • Stock update
      • Price update
      • Bulk Merchant Active
      • Bulk Merchant Inactive
      • Variant Listing Status
      • Variant Listing Count
    • Orders
      • Send invoice
      • Order cancel (canceled by seller)
    • Shipment
      • Create shipment
      • Set shipment status (fulfillment by HG)
      • Cancel shipment
    • Refund
      • Refund create result
  1. Tracking

Shipment Tracking With Shipment ID

Developing
GET
/v1/tracking/packages/{shipment_id}
Returns tracking information for a shipment using the shipment_id.
This endpoint is useful when you do not have the tracking barcode but have the shipment reference.

Request

Path Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v1/tracking/packages/'

Responses

🟢200Success
application/json
Body

Example
{
    "data": {
        "delivery_info": [
            {
                "datetime": "2021-10-06 16:38:19",
                "detail": "Packaged",
                "eventCode": "00",
                "location": "",
                "message": "The Post is Created",
                "status": "pending"
            }
        ],
        "tracking_barcode": "WWEIL0000065606YQ"
    },
    "error_code": 0,
    "message": ""
}
Modified at 2025-06-04 08:20:16
Previous
Shipment Tracking With Barcode
Next
Create Refund
Built with