목적

외부 시스템에서 상품 상세 정보를 조회합니다.

URL

https://{기본 URL}/api/public/v1/products/{product_id}

HTTP 메서드

GET

헤더

본문

쿼리 파라미터

응답 형식

application/json

응답 본문

{
  "product_id": 1234,
  "title": "개발자 후디",
  "description_html": "<p>따뜻한 후디입니다.</p>",
  "category_id": 11,
  "status": "publish",
  "language": "ko",
  "base_price": 39000,
  "sale_price": 29000,
  "is_on_sale": true,
  "is_free": false,
  "requires_shipping": true,
  "is_shipping_free": false,
  "shipping_price": 3000,
  "is_over_50000_free": true,
  "is_extra_shipping_fee": false,
  "is_purchase_agency": false,
  "tax_type": "tax",
  "options": ["색상", "사이즈"],
  "variants": [
    {"variant_id": 1, "option1": "블랙", "option2": "M", "price": 29000, "stock": 10, "sku": "BLK-M"}
  ],
  "options_order": "alphabetical",
  "options_count": 2,
  "no_option_stock": 0,
  "inventory_quantity": 0,
  "featured_image": "<https://example.com/main.jpg>",
  "images": ["<https://example.com/1.jpg>", "<https://example.com/2.jpg>"],
  "thumbnail_link": "<https://example.com/thumb.jpg>",
  "inventory_display_mode": null,
  "installment_month": 0,
  "allow_link": "",
  "connected_membership_ids": [10, 11],
  "related_product_ids": [2001, 2002],
  "created_at": "2025-01-01T00:00:00.000000Z",
  "updated_at": "2025-01-02T00:00:00.000000Z"
}

응답 필드 설명