Skip to content

GET /2025-07/cloud/order

Method: GET

URL:

Sandbox URL:

Description: Return orders on ZhenHub.

Parameters required to be sent

ParameterDescriptionType
pageCurrent page number.Integer
sizeAmount of data per page.Integer

Submit a "GET" request to above endpoint

Result object contains:

ParameterDescriptionType
idOrder ID.Long
shipping_addressShipping address.Object, Required
  first_nameFirst name. The maximum length is 64.String, Required
  last_nameLast name. The maximum length is 64.String, Required
  emailEmail. The maximum length is 128.String, Required, must have @
  phonePhone number. The maximum length is 32.String, Required
  address1Address. The maximum length is 256.String, Required
  address2Address 2. The maximum length is 256.String
  zip_codeZip code. The maximum length is 15.String, Required
  districtDistrict. The maximum length is 60.String, Required
  cityCity. The maximum length is 60.String, Required
  provinceProvince. The maximum length is 60.String, Required
  countryCountry. The maximum length is 60.String
  country_codeCountry code, eg.CN, US. The maximum length is 2.String, Required
billing_addressBilling address. If “billing_address” is not filled, “shipping_address” is used by default.Object
  first_nameFirst name. The maximum length is 64.String, Required
  last_nameLast name. The maximum length is 64.String, Required
  emailEmail. The maximum length is 128.String, Required, must have @
  phonePhone number. The maximum length is 32.String, Required
  address1Address. The maximum length is 256.String, Required
  address2Address 2. The maximum length is 256.String
  zip_codeZip code. The maximum length is 15.String, Required
  districtDistrict. The maximum length is 60.String, Required
  cityCity. The maximum length is 60.String, Required
  provinceProvince. The maximum length is 60.String, Required
  countryCountry. The maximum length is 60.String
  country_codeCountry code, eg.CN, US. The maximum length is 2.String, Required
referenceReference of the order. The maximum length is 47.String
currencyCurrency of the order, default value is “USD”. The maximum length is 3.String
totals_include_taxIndicates whether the total amount includes tax. If true, tax is included; otherwise, it's excluded. Default: false.Boolean
issue_dateIssue date.Date Time
statusStatus:
OnHold, Draft, Approved, Processing, Fulfilled, Completed, Cancelled.
The maximum length is 31.
String
shipping_costShipping cost of the order. The maximum total digits 12, with 2 decimal places.Number
sku_itemsArray containing product SKU details.Array, Required
  sku_numberSKU No. of the product. The maximum length is 128.String, Required
  quantityQuantity of the product.Integer, Required
  pricePrice of the product. The maximum total digits 12, with 2 decimal places.Number, Required
  discountDiscount of the product. The maximum total digits 12, with 2 decimal places.Number
  taxTax of the product, 5%==>0.05. The maximum total digits 12, with 2 decimal places.Number
created_timeCreated time.Date Time
serviceServiceObject
  service_codeService code. The maximum length is 63.String
  inco_termIncoterm. The maximum length is 8.String
  warehouse_codeWarehouse code. The maximum length is 32.String

Response

json
{
  "code": 200,
  "message": "Successful!",
  "data": {
    "page": 1,
    "size": 10,
    "total": 563,
    "list": [
      {
        "id": 465923620988248064,
        "shipping_address": {
          "first_name": "Arthur",
          "last_name": "Chen",
          "email": "arthur@zhenhub.com",
          "phone": "+852 3152xxxx",
          "address1": "7 Cassia Rd, Yau Yat Chuen, Hong Kong",
          "address2": "department 1201010",
          "zip_code": "1008",
          "district": "22224",
          "city": "Kowloon",
          "province": "Kowloon",
          "country_code": "HK"
        },
        "billing_address": {
          "first_name": "Arthur",
          "last_name": "Chen",
          "email": "arthur@zhenhub.com",
          "phone": "+852 3152xxxx",
          "address1": "7 Cassia Rd, Yau Yat Chuen, Hong Kong",
          "address2": "department 1201010",
          "zip_code": "1008",
          "district": "22224",
          "city": "Kowloon",
          "province": "Kowloon",
          "country_code": "HK"
        },
        "reference": "427883",
        "currency": "USD",
        "totals_include_tax": false,
        "issue_date": "2025-07-09T16:54+08:00",
        "status": "Processing",
        "shipping_cost": 0.0,
        "service": null,
        "sku_items": [
          {
            "sku_number": "BuZhiDe_001",
            "quantity": 1,
            "price": 1.66,
            "discount": 0.0,
            "tax": null
          }
        ],
        "created_time": "2025-07-09T08:54:07.692663Z"
      }
    ]
  }
}