상품 목록 조회

조건에 맞는 상품 목록을 조회합니다.

  • searchKeyword 입력 시 상품명 혹은 설명에 해당 단어가 포함되어 있는 상품을 검색합니다.
GET https://papi.shoplive.cloud/v1/goods/{accessKey}

REQUEST

ParameterTypeSourceDescriptionRequiredNote
accessKeystringpath발급 받은 accessKeyO샵라이브에서 발급받은 access key
AuthorizationstringheaderJWT 인증 토큰O인증 헤더 생성
searchKeywordstringquery검색 키워드X이 키워드가 포함된 상품명(Goods.name), 브랜드명(Goods.brand), 상품코드(Goods.sku)를 대상으로 검색합니다.
pageint32query페이지Xdefault: 1
countint32query건수Xdefault: 30

RESPONSE

ParameterTypeDescriptionNote
totalCountint32전체 건수
resultslist<Goods >상품 목록

Example

curl --header "Authorization: Bearer {jwt token}" \
https://papi.shoplive.cloud/v1/goods/{access key}
HTTP/1.1 200
Content-Type: application/json;charset=UTF-8

{
  "results" : [ {
    "id" : 728,
    "name" : "Excel upload test3",
    "brand" : "샵라이브",
    "description" : "설명 추가",
    "url" : "https://example.url/13",
    "sku" : "excel_code3",
    "medias" : [ {
      "id" : 108,
      "mediaType" : "IMAGE",
      "url" : "https://resource-dev.shoplive.cloud/images/de65d61e-6556-47f5-8600-4e872a583a08.png",
      "size" : 34918,
      "width" : 240,
      "height" : 360,
      "thumbnails" : [ {
        "imageUrl" : "https://resource-dev.shoplive.cloud/images/de65d61e-6556-47f5-8600-4e872a583a08_w120.png",
        "original" : false,
        "width" : 120,
        "height" : 180,
        "size" : 9822
      }, {
        "imageUrl" : "https://resource-dev.shoplive.cloud/images/de65d61e-6556-47f5-8600-4e872a583a08_w240.png",
        "original" : false,
        "width" : 240,
        "height" : 360,
        "size" : 34918
      }, {
        "imageUrl" : "https://resource-dev.shoplive.cloud/images/de65d61e-6556-47f5-8600-4e872a583a08_w480.png",
        "original" : false,
        "width" : 480,
        "height" : 720,
        "size" : 112348
      } ]
    } ],
    "originalPrice" : 450000.0,
    "discountedPrice" : 299000.0,
    "currency" : "KRW",
    "discountPercentage" : 33.0
  }, {
    "id" : 727,
    "name" : "Excel upload test2",
    "brand" : "샵라이브",
    "description" : "설명 추가",
    "url" : "https://example.url/12",
    "sku" : "excel_code2",
    "medias" : [ {
      "id" : 107,
      "mediaType" : "IMAGE",
      "url" : "https://resource-dev.shoplive.cloud/images/1b615f79-6765-4671-8186-b81e9fd67d9d.jpg",
      "size" : 4698,
      "width" : 240,
      "height" : 288,
      "thumbnails" : [ {
        "imageUrl" : "https://resource-dev.shoplive.cloud/images/1b615f79-6765-4671-8186-b81e9fd67d9d_w120.jpg",
        "original" : false,
        "width" : 120,
        "height" : 144,
        "size" : 2077
      }, {
        "imageUrl" : "https://resource-dev.shoplive.cloud/images/1b615f79-6765-4671-8186-b81e9fd67d9d_w240.jpg",
        "original" : false,
        "width" : 240,
        "height" : 288,
        "size" : 4698
      }, {
        "imageUrl" : "https://resource-dev.shoplive.cloud/images/1b615f79-6765-4671-8186-b81e9fd67d9d_w480.jpg",
        "original" : false,
        "width" : 480,
        "height" : 576,
        "size" : 11486
      } ]
    } ],
    "originalPrice" : 12000.0,
    "discountedPrice" : 7000.0,
    "currency" : "KRW",
    "discountPercentage" : 41.0
  } ],
  "totalCount" : 621,
  "_s" : 0
}