Bunjang Open API
  1. Product Category
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
        GET
    • Brand
      • Brands Lookup
    • Product
      • Product Lookup
      • Products Retrieval
    • Point
      • Point Balance Lookup
    • Order
      • Create Order
      • Confirm Order
      • Order Lookup
      • Orders Lookup
      • Create Order V2
  1. Product Category

Categories Lookup

GET
https://openapi.bunjang.co.kr/api/v1/categories
category

Request

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

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/categories'

Responses

🟢200Success
application/json
Body
data
array [object {4}] 
required
id
string 
required
Category ID
Example:
310150
nameKor
string 
required
Korean Category Name
Example:
바지
nameEng
string 
required
English Category Name
Example:
Pants
iconUrl
string 
optional
Category Icon Image URL
Example:
https://static.bunjang.co.kr/category_icons/2311/ic_category_women-pants.png
Example
{
    "data": [
        {
            "id": "310150",
            "nameKor": "바지",
            "nameEng": "Pants",
            "iconUrl": "https://static.bunjang.co.kr/category_icons/2311/ic_category_women-pants.png"
        }
    ]
}
🟠401INVALID_AUTH_TOKEN
🟠400BAD_REQUEST
Modified at 2024-10-18 07:48:07
Previous
Error Codes
Next
Brands Lookup
Built with