Bunjang Open API
  1. Product
Bunjang Open API
  • Overview
  • Changelog
  • Authentication
  • Product Catalog
    • Service Base URL
    • Sample Data
    • Full Catalog Download
      GET
    • Segment Catalog Download
      GET
  • Rest API
    • Service Base URL
    • Error Codes
    • Product Category
      • Categories Lookup
    • Brand
      • Brands Lookup
    • Product
      • Product Lookup
        GET
      • Products Retrieval
        GET
      • Get On-Sale Products
        POST
    • Point
      • Point Balance Lookup
    • Order
      • Create Order
      • Confirm Order
      • Order Lookup
      • Orders Lookup
      • Create Order V2
  1. Product

Get On-Sale Products

Testing
POST
https://openapi.bunjang.co.kr/api/v1/products/get-on-sale
현재 판매중인 상품 ID 목록을 조회합니다.
(Retrieves a list of product IDs that are currently available for sale.)
Request:
최대 요청 가능수(Max Request Count): 200
Response:
응답에는 판매 중인 상품의 PID만 포함됩니다.
(The response contains only the PIDs of products that are on sale.)

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params

Body Params application/json

Example
{
    "pids": [
        341485879,
        341485920
    ]
}

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://openapi.bunjang.co.kr/api/v1/products/get-on-sale' \
--header 'Content-Type: application/json' \
--data-raw '{
    "pids": [
        341485879,
        341485920
    ]
}'

Responses

🟢200Success
application/json
Body

Example
{
    "data": {
        "pids": [
            341485879
        ]
    }
}
🟠401INVALID_AUTH_TOKEN
🟠404ERR_PRODUCT_NOT_FOUND
🟠400BAD_REQUEST
Modified at 2025-06-26 03:56:32
Previous
Products Retrieval
Next
Point Balance Lookup
Built with