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

Products Retrieval

GET
https://openapi.bunjang.co.kr/api/v1/products

imageUrl 생성 방법#

imageUrlTemplate의 {cnt}를 imageCount로 치환하여 사용한다.
Example:
{
  "data": [
    {
      "pid": 2000614090,
      ...
      "imageUrlTemplate": "https://media.bunjang.co.kr/product/2000614090_{cnt}_1737447450_w640.jpg",
      "imageCount": 3,
      ...
    },
    ...
  ],
  ...
}
치환결과
https://media.bunjang.co.kr/product/2000614090_1_1737447450_w640.jpg
https://media.bunjang.co.kr/product/2000614090_2_1737447450_w640.jpg
https://media.bunjang.co.kr/product/2000614090_3_1737447450_w640.jpg

Request

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

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 -g --request GET 'https://openapi.bunjang.co.kr/api/v1/products?size=100&sort=score&cursor=[0.074820995,1721693446483,2000150271]&q=nike&categoryId=400,410&brandId=1,2,3&freeShipping=true&maxPrice=1000000&minPrice=50000&canInstantTrade=true&uid=82312321,77556686,78286906'

Responses

🟢200Success
application/json
Body

Example
{
    "data": [
        {
            "pid": 2000614090,
            "name": "샤넬 테스트 ms",
            "quantity": 1,
            "price": 1100000,
            "shippingFee": 0,
            "condition": "LIKE_NEW",
            "saleStatus": "SELLING",
            "keywords": "샤넬",
            "imageUrlTemplate": "https://media.bunjang.co.kr/product/2000614090_{cnt}_1737447450_w640.jpg",
            "imageCount": 1,
            "categoryId": "310260800",
            "brandId": 41,
            "options": [
                {
                    "id": "사이즈",
                    "value": "Free"
                }
            ],
            "uid": 2000004443,
            "updatedAt": "2025-01-20T23:17:30Z",
            "createdAt": "2025-01-20T23:17:30Z"
        },
        {
            "pid": 2000614054,
            "name": "샤넬 코코크러쉬 브레이슬릿 테스트",
            "quantity": 1,
            "price": 8000000,
            "shippingFee": 0,
            "condition": "NEW",
            "saleStatus": "SELLING",
            "imageUrlTemplate": "https://media.bunjang.co.kr/product/2000614054_{cnt}_1737364347_w640.jpg",
            "imageCount": 1,
            "categoryId": "422300100",
            "brandId": 41,
            "uid": 2000009345,
            "updatedAt": "2025-01-20T00:12:27Z",
            "createdAt": "2025-01-16T21:13:01Z"
        }
    ],
    "nextCursor": "[0.14971776,1733362477262,2000613432]",
    "hasNext": true
}
🟠401INVALID_AUTH_TOKEN
🟠400BAD_REQUEST
Modified at 2025-06-20 09:30:15
Previous
Product Lookup
Next
Get On-Sale Products
Built with