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
      • List Categories
    • Brand
      • List Brands
    • Product
      • Get Product
        GET
      • Search Products
        GET
      • Filter On-Sale Products
        POST
    • Point
      • Get Point Balance
      • Create Point Charge
      • Get Point Charge
      • Cancel Point Charge
    • Order
      • Create Order
      • Confirm Order
      • Get Order
      • List Orders
      • Create Order (Deprecated)
  • Schemas
    • Product Condition
    • Product Active Sale Status
    • Order Status
  1. Product

Filter On-Sale Products

Prod Env
https://openapi.bunjang.co.kr
Prod Env
https://openapi.bunjang.co.kr
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 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "pids": [
        341485879,
        341485920
    ]
}'

Responses

🟢200Success
application/json
Body

Examples
{
    "data": {
        "pids": [
            341485879
        ]
    }
}
🟠401INVALID_AUTH_TOKEN
🟠400BAD_REQUEST
Modified at 2026-03-10 09:12:53
Previous
Search Products
Next
Get Point Balance
Built with