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
    • 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}
product

Request

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

Request 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
data
object 
required
pid
integer 
required
product ID
Example:
12345
uid
integer 
required
user ID
Example:
123
name
string 
required
Example:
에이수스 게이밍 노트북
description
string 
required
categoryId
string 
required
Example:
600100001
brandId
integer  | null 
optional
>= 0
Example:
152
quantity
integer 
required
>= 1
Example:
1
price
integer 
required
>= 500
Example:
24000
shippingFee
integer 
required
>= 0
Example:
4000
condition
enum<string> 
required
Allowed values:
NEWUSEDLIKE_NEWLIGHTLY_USEDHEAVILY_USEDDAMAGEDUNDEFINED
saleStatus
enum<string> 
required
Allowed value:
SELLING
imageUrls
array[string]
required
keywords
array[string]
required
options
array [object {2}] 
required
updatedAt
string <date-time>
required
Example:
2024-08-01T13:00:03Z
createdAt
string <date-time>
required
Example:
2024-08-01T11:05:03Z
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