跳到主要内容

ListSKUs

Host: dip-cb.binanceapi.com

GET /mp-api/v1/apps/{appId}/skus?page=1&limit=20&auditStatus=

Header

ParameterRequiredDescription
X-Mp-Open-Api-TokenYesJWT token. Please refer to Description of External Interface Signature Authentication Algorithm

Path Parameters

ParameterDescription
appIdAppId of the mini program

Query Parameters

ParameterRequiredDescription
pageNoDesignated query page. Defaults to 1.
limitNoQuantity limit per page. The maximum size is 50. Defaults to 50.
auditStatusNoSKU audit status filter. Can be 'TODO', 'APPROVED', or 'REJECTED'.

Response

HTTP 200

{
"code": "000000",
"message": null,
"data": {
"skus": [{
"id": "bn_point_100",
"audit": {
"info": {
"id": "bn_point_100",
"defaultName": "BN 100 points",
"names": {
"en": "BN 100 points",
"zh-TW": "BN 100 點"
},
"category": "Games",
"imageUrl": "https://bn.com/hnCWgai85XJwn7qSRXjiUt.png",
"imageStatus": "UPLOADING",
"originalPrice": "9.99",
"sellingPrice": "6.99",
"discountPercentage": 30,
"path": "/pages/index/index?foo=bar&baz=qux",
"description": "A virtual top-up item",
"stocks": 100,
"autoDelivery": true,
"maxQuantity": 5,
"countryWhitelist": ["TW", "JP"],
"countryBlacklist": ["SG"],
"currency": "USD",
"pricingMode": "flat",
"pricingTiers": []
},
"auditStatus": "APPROVED"
},
"online": {
"info": {
"id": "bn_point_100",
"defaultName": "BN 100 points",
"names": {
"en": "BN 100 points",
"zh-TW": "BN 100 點"
},
"category": "Games",
"imageUrl": "https://bn.com/hnCWgai85XJwn7qSRXjiUt.png",
"imageStatus": "UPLOADING",
"originalPrice": "19.99",
"sellingPrice": "17.99",
"discountPercentage": 10,
"path": "/pages/index/index?foo=bar&baz=qux",
"description": "A virtual top-up item",
"stocks": 100,
"autoDelivery": true,
"maxQuantity": 5,
"countryWhitelist": ["TW", "JP", "ID"],
"countryBlacklist": ["SG"],
"currency": "USD",
"pricingMode": "flat",
"pricingTiers": []
},
"availableStatus": "ACTIVE"
}
}]
},
"success": true
}

Response Parameters

ParameterDescription
skusArray of SKU information
auditAudit information for the SKU
onlineOnline information for the SKU
imageStatusStatus of the SKU image, could be 'UPLOADING', 'SUCCESS', 'FAILED', or 'NONEXISTED'
auditStatusAudit status of the SKU, could be 'TODO', 'APPROVED', or 'REJECTED'
availableStatusAvailability status of the SKU, controlled by merchant. Can be 'ACTIVE' or 'DEACTIVE'
metadataPagination information. 'itemCount' is the total count for the current response, 'itemsPerPage' is the total count per page as per the given request
descriptionMerchant-provided description for this SKU
stocksMerchant-provided inventory quantity. Absent if not set.
autoDeliveryWhether the SKU supports automatic delivery after purchase. Only SKUs with auto delivery enabled can complete the full purchase flow within Lifestyle; SKUs without it require the merchant to fulfill delivery out-of-band. Absent if not set.
maxQuantityMaximum quantity a buyer can purchase per order (1–99). Defaults to 99 when not explicitly set. When 1, the UI hides the quantity input widget.
currencyISO 4217 currency code that all monetary amounts on this SKU are denominated in (applies to all pricing modes). Defaults to "USD" when not set.
originalPriceList price as a string, in currency major units (e.g. "9.99"). For "tiered" mode, the maximum originalPrice across all tiers.
sellingPriceActual selling price as a string, in currency major units. For "tiered" mode, the minimum sellingPrice across all tiers. For "custom" mode, equals minSellingPrice.
pricingModePricing mode: "flat" for a single price, "tiered" for multiple fixed denomination options, "custom" for user-entered amount within a range
pricingTiersArray of PricingTier objects. Present when pricingMode is "tiered", empty array otherwise. Each tier carries originalPrice/sellingPrice in currency major units, and may include autoDelivery, maxQuantity, and stocks overrides.
minSellingPriceMinimum amount the user may enter, in currency major units. Present when pricingMode is "custom".
maxSellingPriceMaximum amount the user may enter, in currency major units. Present when pricingMode is "custom".
customPriceOptionsPreset amounts for buyer quick-select, each in currency major units. Present when pricingMode is "custom" and presets were configured; absent otherwise.
minSellingPriceUsdCent⚠️ Deprecated. Legacy minimum in USD cents (only meaningful when currency == "USD"). Back-filled from minSellingPrice (round(major × 100)) for USD SKUs; 0 for non-USD SKUs. Prefer minSellingPrice.
maxSellingPriceUsdCent⚠️ Deprecated. Legacy maximum in USD cents. Back-filled from maxSellingPrice for USD SKUs; 0 for non-USD SKUs. Prefer maxSellingPrice.
customPriceOptionsUsdCent⚠️ Deprecated. Legacy presets in USD cents. Back-filled from customPriceOptions for USD SKUs; absent for non-USD SKUs. Prefer customPriceOptions.
discountPercentageDiscount percentage displayed to buyers. For "flat" mode, always computed from (originalPrice − sellingPrice) / originalPrice × 100 (any merchant-provided value is ignored). For "custom" mode, the merchant-provided value. For "tiered" mode, derived from the tier with the highest discount.
exchangeMarginCurrency-exchange margin percentage applied when converting money from currency to another currency at checkout/settlement (e.g. 1.5 means a 1.5% margin). Absent (or 0) when not configured on the SKU.

Legacy price fields & backward compatibility. The *_usd_cent response fields are deprecated: they are back-filled from the new major-unit fields for USD SKUs (so existing clients reading them still work) and are 0/absent for non-USD SKUs (no USD-cents value exists without the platform exchange rate, which is not stored on the SKU). To render any SKU correctly — including non-USD — read currency + originalPrice/sellingPrice/minSellingPrice/maxSellingPrice/customPriceOptions. See CreateSKUInAudit — Legacy price fields & backward compatibility for the full contract.

Changelog

DateChange
2026-07-20Exchange margin. The response now returns an exchangeMargin field — the merchant-provided currency-exchange margin percentage (e.g. 1.5 = 1.5%) applied when converting money from currency to another currency at checkout/settlement. Absent (or 0) when not configured.
2026-07-14Multi-currency pricing. The response now returns a currency field (ISO 4217, default "USD") and currency-aware major-unit price fields (originalPrice / sellingPrice as currency major-unit strings; minSellingPrice, maxSellingPrice, customPriceOptions for custom mode; per-tier originalPrice / sellingPrice). Deprecated the legacy *_usd_cent response fields — back-filled from the major-unit fields for USD SKUs, 0/absent for non-USD SKUs. See Legacy price fields & backward compatibility.