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

Product Lookup

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

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path 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 --request GET 'https://openapi.bunjang.co.kr/api/v1/products/'

Responses

🟒200Success
application/json
Body

Example
{
    "data": {
        "pid": 12345,
        "uid": 123,
        "name": "μ—μ΄μˆ˜μŠ€ 게이밍 λ…ΈνŠΈλΆ",
        "description": "λ…ΈνŠΈλΆ νŒλ‹ˆλ‹€. μž‘λ™μ—λŠ” 문제 μ—†μ§€λ§Œ, μ‚¬μš©κ°μ€ μ’€ μžˆμŠ΅λ‹ˆλ‹€.",
        "categoryId": "600100001",
        "brandId": 152,
        "quantity": 1,
        "price": 24000,
        "shippingFee": 4000,
        "condition": "HEAVILY_USED",
        "saleStatus": "SELLING",
        "imageUrls": [
            "https://media.bunjang.co.kr/product/286843781_1_1724935891_w900.jpg"
        ],
        "keywords": [
            "λ…ΈνŠΈλΆ",
            "μ—μ΄μˆ˜μŠ€"
        ],
        "options": [
            {
                "id": "μ €μž₯μš©λŸ‰",
                "value": "128GB"
            },
            {
                "id": "램 μš©λŸ‰",
                "value": "기타 (μƒν’ˆμ„€λͺ…에 μž‘μ„±)"
            }
        ],
        "updatedAt": "2024-08-01T13:00:03Z",
        "createdAt": "2024-08-01T11:05:03Z"
    }
}
🟠401INVALID_AUTH_TOKEN
🟠404ERR_PRODUCT_NOT_FOUND
🟠400BAD_REQUEST
Modified atΒ 2024-10-18 07:48:07
Previous
Brands Lookup
Next
Products Retrieval
Built with