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
    • Point
      • Point Balance Lookup
    • Order
      • Create Order
        POST
      • Confirm Order
        POST
      • Order Lookup
        GET
      • Orders Lookup
        GET
      • Create Order V2
        POST
  1. Order

Order Lookup

GET
https://openapi.bunjang.co.kr/api/v1/orders/{orderId}
주문 상세 조회

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params
orderId
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/orders/'

Responses

🟢200Success
application/json
Body
data
object 
required
order
object 
required
seller
object 
required
delivery
object 
required
returns
array [object {4}] 
optional
Example
{
    "data": {
        "order": {
            "id": 1878512064,
            "totalPrice": 6000,
            "totalProductPrice": 3000,
            "deliveryPrice": 3000,
            "orderDoneAt": "2025-02-06T14:01:24Z",
            "approvedAt": "2025-02-06T14:17:36Z",
            "orderItems": [
                {
                    "id": 69439579,
                    "status": "PAYMENT_RECEIVED",
                    "product": {
                        "id": 2000025463,
                        "name": "마우스",
                        "price": 3000
                    },
                    "purchaseConfirmedAt": "2025-02-06T14:18:11Z",
                    "refundedAt": "2025-02-06T16:48:34Z",
                    "statusUpdatedAt": "2025-02-09T14:57:17Z",
                    "shippingFeeIncluded": false,
                    "returnRequestId": 2000002141
                }
            ]
        },
        "seller": {
            "id": 2000002836,
            "shopName": "판매자"
        },
        "delivery": {
            "invoice": {
                "no": "1234567890",
                "companyCode": "cj",
                "companyName": "CJ대한통운"
            },
            "address": {
                "name": "구매자",
                "phone": "01012345678",
                "address1": "서울특별시 서초구 서초대로 38길 12",
                "address2": "10층 101호",
                "zipCode": "12345"
            },
            "shipDoneAt": "2025-02-06T14:17:55Z"
        },
        "returns": [
            {
                "id": 2000002141,
                "invoice": {
                    "no": "0987654321",
                    "companyCode": "cj",
                    "companyName": "CJ대한통운"
                },
                "address": {
                    "name": "판매자",
                    "phone": "01012345678",
                    "address1": "서울특별시 서초구 서초대로 38길 12",
                    "address2": "10층 101호",
                    "zipCode": "12345"
                },
                "shipDoneAt": "2025-02-09T14:57:17Z"
            }
        ]
    }
}
🟠401INVALID_AUTH_TOKEN
🟠404Record Not Found
🟠400Bad Request
🟠403Forbidden
Modified at 2025-02-16 05:57:37
Previous
Confirm Order
Next
Orders Lookup
Built with