sayren Docs
상품

상품 상세 조회

GET
/v1/products/{productId}
AuthorizationBearer <token>

userToken(계정 스코프) 또는 storeToken(스토어 스코프)

In: header

Path Parameters

productId*string

Response Body

application/json

curl -X GET "https://example.com/v1/products/string"
{  "meta": {    "status": 200,    "code": "OK",    "message": "OK",    "isSuccess": true  },  "data": {    "productId": "prod_3f9a1c2b7d4e",    "name": "오버핏 코튼 반팔 티셔츠",    "status": "SALE",    "salePrice": 29000,    "discountedPrice": null,    "stockQuantity": 145,    "categoryId": "cat_tshirt",    "thumbnailUrl": "https://cdn.avarlabs.com/demo/tshirt-white.jpg",    "hasOptions": true,    "updatedAt": "2026-09-24T10:30:00+09:00",    "createdAt": "2026-09-24T10:30:00+09:00",    "description": "<p>도톰한 20수 코튼으로 만든 오버핏 반팔 티셔츠입니다.</p>",    "descriptionJson": null,    "originalPrice": 39000,    "images": [      "https://cdn.avarlabs.com/demo/tshirt-white.jpg"    ],    "attributes": [],    "optionGroups": [      {        "groupId": "og_color",        "name": "색상",        "sortOrder": 0,        "values": [          {            "valueId": "ov_white",            "name": "화이트",            "sortOrder": 0          },          {            "valueId": "ov_black",            "name": "블랙",            "sortOrder": 1          }        ]      },      {        "groupId": "og_size",        "name": "사이즈",        "sortOrder": 1,        "values": [          {            "valueId": "ov_m",            "name": "M",            "sortOrder": 0          },          {            "valueId": "ov_l",            "name": "L",            "sortOrder": 1          }        ]      }    ],    "variants": [      {        "variantId": "var_white_m",        "valueIds": [          "ov_white",          "ov_m"        ],        "name": "화이트 / M",        "additionalPrice": 0,        "stockQuantity": 50,        "sku": null,        "barcode": null,        "costPrice": null,        "weightGram": null,        "sellerCode": null,        "usable": true      },      {        "variantId": "var_white_l",        "valueIds": [          "ov_white",          "ov_l"        ],        "name": "화이트 / L",        "additionalPrice": 0,        "stockQuantity": 40,        "sku": null,        "barcode": null,        "costPrice": null,        "weightGram": null,        "sellerCode": null,        "usable": true      },      {        "variantId": "var_black_m",        "valueIds": [          "ov_black",          "ov_m"        ],        "name": "블랙 / M",        "additionalPrice": 0,        "stockQuantity": 35,        "sku": null,        "barcode": null,        "costPrice": null,        "weightGram": null,        "sellerCode": null,        "usable": true      },      {        "variantId": "var_black_l",        "valueIds": [          "ov_black",          "ov_l"        ],        "name": "블랙 / L",        "additionalPrice": 1000,        "stockQuantity": 20,        "sku": null,        "barcode": null,        "costPrice": null,        "weightGram": null,        "sellerCode": null,        "usable": true      }    ],    "deliveryType": "CONDITIONAL_FREE",    "deliveryFee": 3000,    "conditionalFreeAmount": 50000,    "returnFee": 3000,    "exchangeFee": 6000,    "shippingAddressId": null,    "returnAddressId": null  },  "error": null}