Bunjang Open API
  1. Order
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
      • Products Retrieval
      • Get On-Sale Products
    • Point
      • Point Balance Lookup
      • Point Issuance Request
      • Point Issuance Lookup
      • Point Issuance Cancel
    • Order
      • Create Order
        POST
      • Confirm Order
        POST
      • Order Lookup
        GET
      • Orders Lookup
        GET
      • Create Order V2
        POST
  • Schemas
    • Product Condition
    • Product Active Sale Status
    • Order Status
  1. Order

Create Order V2

POST
https://openapi.bunjang.co.kr/api/v2/orders

Request

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

Example
{
    "product": {
        "id": 12345,
        "price": 500000
    },
    "deliveryPrice": 3000,
    "shippingAddress": {
        "name": "구매자",
        "phone": "01012345678",
        "zipCode": "12345",
        "address1": "서울특별시 서초구 서초대로 38길 12",
        "address2": "10층 101호",
        "extraInfo": "#1234"
    }
}

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 POST 'https://openapi.bunjang.co.kr/api/v2/orders' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "product": {
        "id": 12345,
        "price": 500000
    },
    "deliveryPrice": 3000,
    "shippingAddress": {
        "name": "구매자",
        "phone": "01012345678",
        "zipCode": "12345",
        "address1": "서울특별시 서초구 서초대로 38길 12",
        "address2": "10층 101호",
        "extraInfo": "#1234"
    }
}'

Responses

🟢200Success
application/json
Body

Example
{
    "data": {
        "id": 1
    }
}
🟠401INVALID_AUTH_TOKEN
🟠400BAD_REQUEST
Modified at 2026-01-13 03:12:48
Previous
Orders Lookup
Next
Product Condition
Built with