1. Order
SUNSKY Open API
  • SUNSKY Open API
    • Common Calling Convention
    • Callback Hooks
    • Appendixes
    • Category
      • Get the children of the category
    • Product
      • Search products
      • Get the product details
      • Download the product images
      • Get the image changelist
    • Order
      • Get the country list for shipping
        POST
      • Get the prices and the shipping costs for the items
        POST
      • Create an order
        POST
      • Get the order details
        POST
      • Search orders
        POST
      • Add labels to the order
        POST
      • Get the labels for the order
        POST
    • Account
      • Check your balance on SUNSKY
      • Get your balance history
    • Stats
      • Get the hot items
    • Coupon
      • Get the coupon list
  1. Order

Search orders

POST
https://open.sunsky-online.com/openapi/order!getOrderList.do
This API return the orders which match the conditions you specified.
ATTENTION: The 'detailList' of the orders is NOT returned by this interface, please use '/openapi/order!getOrderDetails.do' to get the items info.

Request

Body Params application/x-www-form-urlencodedRequired

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 POST 'https://open.sunsky-online.com/openapi/order!getOrderList.do' \
--data-urlencode 'key=' \
--data-urlencode 'signature=' \
--data-urlencode 'pageSize=100' \
--data-urlencode 'page=1' \
--data-urlencode 'status=' \
--data-urlencode 'siteNumber=' \
--data-urlencode 'gmtCreatedStart=10/31/2023' \
--data-urlencode 'gmtCreatedEnd=10/31/2023'

Responses

🟢200
application/json
Successful response
Body

Example
{
    "result": "success",
    "data": {
        "total": 10,
        "pageCount": 1,
        "result": { } // same as the order details without detailList
    }
}
Modified at 2026-03-11 08:10:11
Previous
Get the order details
Next
Add labels to the order
Built with