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

Brands Lookup

GET
https://openapi.bunjang.co.kr/api/v1/brands
brand

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

Responses

🟢200Success
application/json
Body
data
array [object {3}] 
required
id
integer 
required
Brand ID
Example:
1
nameKor
string 
required
Korean Brand Name
Example:
나이키
nameEng
string 
required
English Brand Name
Example:
NIKE
Example
{
    "data": [
        {
            "id": 1,
            "nameKor": "나이키",
            "nameEng": "NIKE"
        }
    ]
}
🟠401INVALID_AUTH_TOKEN
🟠400BAD_REQUEST
Modified at 2024-10-18 07:48:07
Previous
Categories Lookup
Next
Product Lookup
Built with